Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
cb3d9120
Commit
cb3d9120
authored
Feb 18, 2010
by
Hugo Beauzee-Luyssen
Browse files
Don't ask if a session should be restored if crash handler is off.
parent
fc5fab2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Gui/MainWindow.cpp
View file @
cb3d9120
...
...
@@ -123,12 +123,16 @@ MainWindow::MainWindow( QWidget *parent ) :
m_pWizard
=
new
ProjectWizard
(
this
);
m_pWizard
->
setModal
(
true
);
#ifdef WITH_CRASHHANDLER
QSettings
s
;
if
(
s
.
value
(
"ShowWizardStartup"
,
true
).
toBool
()
&&
restoreSession
()
==
false
)
{
m_pWizard
->
show
();
}
#else
m_pWizard
->
show
();
#endif
}
MainWindow
::~
MainWindow
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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