Do not show empty messages in the statusbar.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32638 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2009-12-25 23:30:15 +00:00
parent 4b9ba960ec
commit ecb69bb6eb

View File

@ -97,7 +97,8 @@ void GuiProgress::doClearMessages()
void GuiProgress::appendText(QString const & text)
{
view_->updateMessage(text);
if (!text.isEmpty())
view_->updateMessage(text);
}