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
This commit is contained in:
Vincent van Ravesteijn 2009-12-25 23:29:07 +00:00
parent 904129cba6
commit 4b9ba960ec

View 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();
}