From: Vincent van Ravesteijn Date: Fri, 25 Dec 2009 23:29:07 +0000 (+0000) Subject: Fix the display of messages in the status bar. This is about the "permanent" message... X-Git-Tag: 2.0.0~4716 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=4b9ba960ece0f42c6e1d4b5db1530bc310a5c54d;p=lyx.git Fix the display of messages in the status bar. This is about the "permanent" message that shows e.g., the font and the track changes status. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32637 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index 8923da5abe..79a0acd40d 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -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(); }