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