]> git.lyx.org Git - features.git/commitdiff
Fix cursor size...
authorAbdelrazak Younes <younes@lyx.org>
Tue, 24 Oct 2006 16:38:17 +0000 (16:38 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Tue, 24 Oct 2006 16:38:17 +0000 (16:38 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15537 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiWorkArea.C

index c224ae59fc406c93bc36cd0c723a0cc7c736c427..9aa1ba5630dcb5566490e016fd4829be7f92b338 100644 (file)
@@ -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();