]> git.lyx.org Git - features.git/commitdiff
* ControlMath.C
authorMartin Vermeer <martin.vermeer@hut.fi>
Sat, 8 Apr 2006 19:32:52 +0000 (19:32 +0000)
committerMartin Vermeer <martin.vermeer@hut.fi>
Sat, 8 Apr 2006 19:32:52 +0000 (19:32 +0000)
(ControlMath::dispatchInsert): fix broken GUI for sub/superscript
insertion

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

src/frontends/controllers/ControlMath.C

index 3eae5af11da867d0c4916803a4ddaed9d5448cfe..a0cc9de8fa14e42cc952f31bbc3bfc10140e84f8 100644 (file)
@@ -50,14 +50,12 @@ void ControlMath::dispatchInsert(string const & name) const
 void ControlMath::dispatchSubscript() const
 {
        dispatchFunc(LFUN_INSERT_MATH, "_");
-       dispatchFunc(LFUN_DOWN);
 }
 
 
 void ControlMath::dispatchSuperscript() const
 {
        dispatchFunc(LFUN_INSERT_MATH, "^");
-       dispatchFunc(LFUN_UP);
 }