]> git.lyx.org Git - lyx.git/commitdiff
Fix the display of messages in the status bar. This is about the "permanent" message...
authorVincent van Ravesteijn <vfr@lyx.org>
Fri, 25 Dec 2009 23:29:07 +0000 (23:29 +0000)
committerVincent van Ravesteijn <vfr@lyx.org>
Fri, 25 Dec 2009 23:29:07 +0000 (23:29 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32637 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiView.cpp

index 8923da5abe8f19e62f597cf5376f0a62e3c4153f..79a0acd40dcb96a7082a7b22793af93be90ca908 100644 (file)
@@ -741,8 +741,11 @@ void GuiView::bigSizedIcons()
 
 void GuiView::clearMessage()
 {
-       if (!hasFocus())
-               return;
+       // FIXME: This code was introduced in r19643 to fix bug #4123. However,
+       // the hasFocus function mostly returns false, even if the focus is on
+       // a workarea in this view.
+       //if (!hasFocus())
+       //      return;
        showMessage();
        d.statusbar_timer_.stop();
 }