Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
09b2dc62
Commit
09b2dc62
authored
Mar 16, 2010
by
Hugo Beauzee-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check if the project needs to be restored, even if the wizard is deactivated.
parent
985c9baa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
src/Gui/MainWindow.cpp
src/Gui/MainWindow.cpp
+5
-4
No files found.
src/Gui/MainWindow.cpp
View file @
09b2dc62
...
...
@@ -124,13 +124,14 @@ MainWindow::MainWindow( QWidget *parent ) :
m_pWizard
->
setModal
(
true
);
#ifdef WITH_CRASHHANDLER
if
(
restoreSession
()
==
false
)
return
;
#endif
QSettings
s
;
if
(
s
.
value
(
"ShowWizardStartup"
,
true
).
toBool
()
)
{
#ifdef WITH_CRASHHANDLER
if
(
restoreSession
()
==
false
)
return
;
#endif
//If a project was opened from the command line: don't show the wizzard.
if
(
qApp
->
arguments
().
size
()
==
1
)
m_pWizard
->
show
();
...
...
Write
Preview
Markdown
is supported
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