From fe2abd38462720f706a0df039aafc5c33ff04b37 Mon Sep 17 00:00:00 2001 From: Michael Schmitt Date: Tue, 24 Oct 2006 21:12:46 +0000 Subject: [PATCH] * src/frontends/qt4/GuiWorkArea.C: fix cursor positioning git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15541 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiWorkArea.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiWorkArea.C b/src/frontends/qt4/GuiWorkArea.C index 9aa1ba5630..f383e574e0 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, 2, h); + cursor_->setGeometry(x + 2, y, 2, h); cursor_->shape_ = shape; cursor_->on_ = true; cursor_->show(); -- 2.39.2