From: Dirk H Bartley Date: Tue, 31 Mar 2009 00:09:34 +0000 (+0000) Subject: This works better in this order. Otherwise if the signals are not connected X-Git-Tag: Release-3.0.0~44 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0f0c3130953c82b7c2b0764b4afbce6a0e0009d7;p=bacula%2Fbacula This works better in this order. Otherwise if the signals are not connected it will not set the right widget to the top of the stack. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8659 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/qt-console/mainwin.cpp b/bacula/src/qt-console/mainwin.cpp index effb77869c..1b81f4efa7 100644 --- a/bacula/src/qt-console/mainwin.cpp +++ b/bacula/src/qt-console/mainwin.cpp @@ -109,10 +109,10 @@ void MainWin::popLists() foreach(Console *console, m_consoleHash) console->populateLists(true); app->restoreOverrideCursor(); - m_currentConsole->setCurrent(); m_doConnect = true; connectConsoleSignals(); connectSignals(); + m_currentConsole->setCurrent(); } void MainWin::createPages()