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
57cbe226
Commit
57cbe226
authored
Feb 27, 2010
by
Hugo Beauzee-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wizzard: Fix "Do not show on startup" option.
parent
c0448406
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/Gui/MainWindow.cpp
src/Gui/MainWindow.cpp
+6
-6
No files found.
src/Gui/MainWindow.cpp
View file @
57cbe226
...
...
@@ -123,16 +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
)
if
(
s
.
value
(
"ShowWizardStartup"
,
true
).
toBool
()
)
{
#ifdef WITH_CRASHHANDLER
if
(
restoreSession
()
==
false
)
return
;
#endif
m_pWizard
->
show
();
}
#else
m_pWizard
->
show
();
#endif
}
MainWindow
::~
MainWindow
()
...
...
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