From d8a3f71d4c3bb927fc969eb94cd06cb5f736b2d1 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sat, 3 May 2008 07:56:07 +0000 Subject: [PATCH] fix http://bugzilla.lyx.org/show_bug.cgi?id=4815 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24591 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/Dialog.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/frontends/qt4/Dialog.cpp b/src/frontends/qt4/Dialog.cpp index f2e29bfd8c..d60c3e7c73 100644 --- a/src/frontends/qt4/Dialog.cpp +++ b/src/frontends/qt4/Dialog.cpp @@ -209,8 +209,10 @@ void Dialog::checkStatus() { // buffer independant dialogs are always active. // This check allows us leave canApply unimplemented for some dialogs. - if (!isBufferDependent()) + if (!isBufferDependent()) { + updateView(); return; + } // deactivate the dialog if we have no buffer if (!isBufferAvailable()) {