]> git.lyx.org Git - features.git/commitdiff
* show context menu at the right position
authorStefan Schimanski <sts@lyx.org>
Fri, 8 Feb 2008 23:51:30 +0000 (23:51 +0000)
committerStefan Schimanski <sts@lyx.org>
Fri, 8 Feb 2008 23:51:30 +0000 (23:51 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22881 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiWorkArea.cpp

index 1c66633e62501d3106cc78cead8c829688efd2df..b894571fd72b5af25c695360c129a000739e021a 100644 (file)
@@ -544,10 +544,7 @@ void GuiWorkArea::contextMenuEvent(QContextMenuEvent * e)
        }
        // Position the menu to the right.
        // FIXME: menu position should be different for RTL text.
-       pos.rx() += menu->width();
-       // FIXME: correct vertical position of the menu WRT screen espace.
-       //pos.ry() += menu->height();
-       menu->exec(pos);
+       menu->exec(e->globalPos());
        e->accept();
 }