]> git.lyx.org Git - features.git/commitdiff
Nobody noticed that right click on math insets did not pop up the panel
authorAndré Pönitz <poenitz@gmx.net>
Tue, 9 Apr 2002 14:45:52 +0000 (14:45 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Tue, 9 Apr 2002 14:45:52 +0000 (14:45 +0000)
anymore?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3959 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/formulabase.C

index 401dc92bd945615d6ab1227210e16c25775491c6..8b32f3222a968899c1d7bcc7ff23f549b401fcd4 100644 (file)
@@ -269,14 +269,21 @@ void InsetFormulaBase::updateLocal(BufferView * bv, bool dirty)
 
 
 bool InsetFormulaBase::insetButtonRelease(BufferView * bv,
-                                         int /*x*/, int /*y*/, int /*button*/)
+                                         int /*x*/, int /*y*/, int button)
 {
        //lyxerr << "insetButtonRelease: " << x << " " << y << "\n";
+
        if (!mathcursor)
                return false;
        hideInsetCursor(bv);
        showInsetCursor(bv);
        bv->updateInset(this, false);
+
+       if (button == 3) {
+               // launch math panel for right mouse button
+               bv->owner()->getDialogs()->showMathPanel();
+               return true;
+       }
        return false;
 }