Index: /Vago/trunk/Vago/Vago.pro.user
===================================================================
--- /Vago/trunk/Vago/Vago.pro.user	(revision 792)
+++ /Vago/trunk/Vago/Vago.pro.user	(revision 793)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE QtCreatorProject>
-<!-- Written by Qt Creator 2.4.1, 2013-04-07T00:10:12. -->
+<!-- Written by Qt Creator 2.4.1, 2013-04-07T00:29:09. -->
 <qtcreator>
  <data>
@@ -53,5 +53,5 @@
    <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value>
    <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Target.DesktopTarget</value>
-   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
+   <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value>
    <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
    <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
Index: /Vago/trunk/Vago/mainwindow.cpp
===================================================================
--- /Vago/trunk/Vago/mainwindow.cpp	(revision 792)
+++ /Vago/trunk/Vago/mainwindow.cpp	(revision 793)
@@ -118,4 +118,6 @@
     ui->actionWindows->setChecked(false);
     ui->actionMac_Windows_demo->setChecked(true);
+    resize(800,600); // Mac OS pcs should be able to render this resolution without any problem. It's also better
+    // because the components on mac use more space
 #endif
 
Index: /Vago/trunk/Vago/packageWizard/packagepage2.ui
===================================================================
--- /Vago/trunk/Vago/packageWizard/packagepage2.ui	(revision 792)
+++ /Vago/trunk/Vago/packageWizard/packagepage2.ui	(revision 793)
@@ -262,5 +262,5 @@
       <size>
        <width>20</width>
-       <height>10</height>
+       <height>40</height>
       </size>
      </property>
Index: /Vago/trunk/Vago/packageWizard/packagewizard.cpp
===================================================================
--- /Vago/trunk/Vago/packageWizard/packagewizard.cpp	(revision 792)
+++ /Vago/trunk/Vago/packageWizard/packagewizard.cpp	(revision 793)
@@ -15,5 +15,10 @@
 
     //Center and resize QWizard (http://www.thedazzlersinc.com/source/2012/06/04/qt-center-window-in-screen/)
+#ifdef Q_WS_WIN
     myWizard.resize(640,480);
+#else
+    myWizard.resize(800,600); // Mac OS pcs should be able to render this resolution without any problem. It's also better
+    // because the components on mac use more space
+#endif
     QRect position = myWizard.frameGeometry();
     position.moveCenter(QDesktopWidget().availableGeometry().center());
Index: /Vago/trunk/Vago/soundWizard/soundpage4.ui
===================================================================
--- /Vago/trunk/Vago/soundWizard/soundpage4.ui	(revision 792)
+++ /Vago/trunk/Vago/soundWizard/soundpage4.ui	(revision 793)
@@ -143,5 +143,5 @@
       <string>Audio Channels</string>
      </property>
-     <layout class="QVBoxLayout" name="verticalLayout_2">
+     <layout class="QHBoxLayout" name="horizontalLayout">
       <item>
        <widget class="QRadioButton" name="rbStereo22">
Index: /Vago/trunk/Vago/soundWizard/soundwizard.cpp
===================================================================
--- /Vago/trunk/Vago/soundWizard/soundwizard.cpp	(revision 792)
+++ /Vago/trunk/Vago/soundWizard/soundwizard.cpp	(revision 793)
@@ -22,5 +22,10 @@
 
     //Center and resize QWizard (http://www.thedazzlersinc.com/source/2012/06/04/qt-center-window-in-screen/)
+#ifdef Q_WS_WIN
     this->myWizard->resize(640,480);
+#else
+    this->myWizard->resize(800,600); // Mac OS pcs should be able to render this resolution without any problem. It's also better
+    // because the components on mac use more space
+#endif
     QRect position = this->myWizard->frameGeometry();
     position.moveCenter(QDesktopWidget().availableGeometry().center());
