From 1e74e516dca098d42f68154b69400c51bc6079b2 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sun, 28 Jan 2007 20:10:47 +0000 Subject: [PATCH] Fix focus bug 3153. http://bugzilla.lyx.org/show_bug.cgi?id=3153 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16912 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/QDialogView.C | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/qt4/QDialogView.C b/src/frontends/qt4/QDialogView.C index efdc7368c9..60dadaf3ed 100644 --- a/src/frontends/qt4/QDialogView.C +++ b/src/frontends/qt4/QDialogView.C @@ -60,6 +60,7 @@ void QDialogView::show() if (form()->isVisible()) { form()->raise(); + form()->activateWindow(); } else { form()->show(); }