Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
98981a67
Commit
98981a67
authored
Jun 05, 2009
by
Daniel Molkentin
Browse files
Update welcomescreen if session manager is closed and welcome mode is active.
Reviewed-By: dt
parent
3a0db441
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/projectexplorer.cpp
View file @
98981a67
...
...
@@ -854,6 +854,13 @@ void ProjectExplorerPlugin::showSessionManager()
sessionDialog
.
exec
();
updateActions
();
Core
::
ModeManager
*
modeManager
=
Core
::
ModeManager
::
instance
();
Core
::
IMode
*
welcomeMode
=
modeManager
->
mode
(
Core
::
Constants
::
MODE_WELCOME
);
if
(
modeManager
->
currentMode
()
==
welcomeMode
)
{
updateWelcomePage
(
qobject_cast
<
Core
::
Internal
::
WelcomeMode
*>
(
welcomeMode
));
}
}
void
ProjectExplorerPlugin
::
setStartupProject
(
Project
*
project
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment