From: Abdelrazak Younes Date: Tue, 24 Oct 2006 16:38:17 +0000 (+0000) Subject: Fix cursor size... X-Git-Tag: 1.6.10~12202 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b86a8d09b3756f1b5ca13f8f819ed95c0de89e20;p=features.git Fix cursor size... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15537 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiWorkArea.C b/src/frontends/qt4/GuiWorkArea.C index c224ae59fc..9aa1ba5630 100644 --- a/src/frontends/qt4/GuiWorkArea.C +++ b/src/frontends/qt4/GuiWorkArea.C @@ -599,7 +599,7 @@ void GuiWorkArea::expose(int x, int y, int w, int h) void GuiWorkArea::showCursor(int x, int y, int h, CursorShape shape) { - cursor_->setGeometry(x, y, x + 2, y - h); + cursor_->setGeometry(x, y, 2, h); cursor_->shape_ = shape; cursor_->on_ = true; cursor_->show();