Skip to content

Commit 867d225

Browse files
committed
Add pic
1 parent 9c466e6 commit 867d225

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/Interface/Application/MainWindowCollaborators.cc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,6 @@ void WidgetDisablingService::temporarilyEnableService()
165165
NewUserWizard::NewUserWizard(QWidget* parent) : QWizard(parent)
166166
{
167167
setWindowTitle("SCIRun Initial Setup");
168-
//setPixmap(WatermarkPixmap, QPixmap(":/general/Resources/scirun_5_0_alpha.png"));
169-
//setPixmap(BackgroundPixmap, QPixmap(":/general/Resources/scirun_5_0_alpha.png"));
170168
setOption(NoCancelButton);
171169

172170
addPage(createIntroPage());
@@ -194,7 +192,11 @@ QWizardPage* NewUserWizard::createIntroPage()
194192
page->setTitle("Introduction");
195193

196194
page->setSubTitle("This wizard will help you set up SCIRun for the first time and learn the basic SCIRun operations and hotkeys. All of these settings are available at any time in the Preferences window.");
197-
195+
auto layout = new QVBoxLayout;
196+
auto pic = new QLabel;
197+
pic->setPixmap(QPixmap(":/general/Resources/scirunWizard.png"));
198+
layout->addWidget(pic);
199+
page->setLayout(layout);
198200
return page;
199201
}
200202

243 KB
Loading

src/Interface/Application/scirun5.qrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
<file>Resources/euclideanPipe.png</file>
3737
<file>Resources/manhattanPipe.png</file>
3838
<file>Resources/timepiece-512.png</file>
39+
<file>Resources/scirunWizard.png</file>
3940
<file>Resources/new/general/folder.png</file>
4041
<file>Resources/new/general/header-divider.png</file>
4142
<file>Resources/new/general/help.png</file>

0 commit comments

Comments
 (0)