Fixes: - Restoring session doesn't end up with focus in editor

RevBy:    - dt
Details:  - ProjectWindow always grabbed the focus
This commit is contained in:
con
2008-12-10 16:48:28 +01:00
parent 540c6de108
commit e9d9071009
2 changed files with 12 additions and 2 deletions

View File

@@ -628,8 +628,10 @@ bool SessionManager::loadImpl(const QString &fileName)
if (success) {
// restore the active mode
const QString &modeIdentifier = value(QLatin1String("ActiveMode")).toString();
if (!modeIdentifier.isEmpty())
if (!modeIdentifier.isEmpty()) {
m_core->modeManager()->activateMode(modeIdentifier);
m_core->modeManager()->setFocusToCurrentMode();
}
}
if (debug)