]> git.lyx.org Git - features.git/commitdiff
Work around bug 2859 by Bernhard R.:
authorAbdelrazak Younes <younes@lyx.org>
Fri, 26 Jan 2007 22:04:51 +0000 (22:04 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Fri, 26 Jan 2007 22:04:51 +0000 (22:04 +0000)
http://bugzilla.lyx.org/show_bug.cgi?id=2859

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

src/frontends/qt4/iconpalette.C

index 9df4a78211b642392d0b4a27b77107adb68dbb78..d6eeb091355bc2ac34661ca7e42b76f514867388 100644 (file)
@@ -158,7 +158,16 @@ IconPalette::IconPalette(QWidget * parent, char const ** entries)
                buttons_.push_back(make_pair(p, entries[i]));
                layout_->addWidget(p);
        }
-
+       // FIXME: This is a hack to work around bug 2859
+       // http://bugzilla.lyx.org/show_bug.cgi?id=2859
+       // Short description of the bug:
+       /*
+       Open the math panel and detach the operator panel by pressing the
+       "Detach Panel" button. The detached panel is then always set too
+       high in the left upper corner of the screen as in the attached
+       screenshot.
+       */
+       move(50, 50);
 }