diff --git a/apps/wizard/intropage.cpp b/apps/wizard/intropage.cpp
index 93510cd210..91e7d5dc07 100644
--- a/apps/wizard/intropage.cpp
+++ b/apps/wizard/intropage.cpp
@@ -5,9 +5,9 @@
Wizard::IntroPage::IntroPage(MainWizard *wizard) :
QWizardPage(wizard),
mWizard(wizard)
-
{
setupUi(this);
+ setPixmap(QWizard::WatermarkPixmap, QPixmap(QLatin1String(":/images/intropage-background.png")));
}
int Wizard::IntroPage::nextId() const
diff --git a/apps/wizard/mainwizard.cpp b/apps/wizard/mainwizard.cpp
index 2fec3cec38..6a72d71fbc 100644
--- a/apps/wizard/mainwizard.cpp
+++ b/apps/wizard/mainwizard.cpp
@@ -25,7 +25,6 @@ Wizard::MainWizard::MainWizard(QWidget *parent) :
mGameSettings(mCfgMgr),
QWizard(parent)
{
-
#ifndef Q_OS_MAC
setWizardStyle(QWizard::ModernStyle);
#else
@@ -33,6 +32,8 @@ Wizard::MainWizard::MainWizard(QWidget *parent) :
#endif
setWindowTitle(tr("OpenMW Wizard"));
+ setWindowIcon(QIcon(QLatin1String(":/images/openmw-wizard.png")));
+ setMinimumWidth(550);
// Set the property for comboboxes to the text instead of index
setDefaultProperty("QComboBox", "currentText", "currentIndexChanged");
diff --git a/files/ui/wizard/intropage.ui b/files/ui/wizard/intropage.ui
index bb597e3a61..b06f7f170c 100644
--- a/files/ui/wizard/intropage.ui
+++ b/files/ui/wizard/intropage.ui
@@ -20,7 +20,7 @@
-
- This Wizard will help you install Morrowind and its add-ons for OpenMW to use.
+ This Wizard will help you install Morrowindand its add-ons for OpenMW to use.
true
@@ -29,6 +29,8 @@
-
+
+
+
diff --git a/files/wizard/images/intropage-background.png b/files/wizard/images/intropage-background.png
new file mode 100644
index 0000000000..0ce13804b4
Binary files /dev/null and b/files/wizard/images/intropage-background.png differ
diff --git a/files/wizard/images/openmw-wizard.png b/files/wizard/images/openmw-wizard.png
new file mode 100644
index 0000000000..cde473d14f
Binary files /dev/null and b/files/wizard/images/openmw-wizard.png differ
diff --git a/files/wizard/wizard.qrc b/files/wizard/wizard.qrc
index b3bb722c9f..99623e9856 100644
--- a/files/wizard/wizard.qrc
+++ b/files/wizard/wizard.qrc
@@ -5,4 +5,8 @@
icons/tango/48x48/folder.png
icons/tango/48x48/system-installer.png
+
+ images/intropage-background.png
+ images/openmw-wizard.png
+