From 3166fa415a7f0b366ba47af36406bd53e34a7676 Mon Sep 17 00:00:00 2001 From: Mikkel Krautz Date: Wed, 7 May 2008 22:12:13 +0000 Subject: [PATCH] Workaround for the, now as of Qt 4.4.0 yet worse, QWizard bug. git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1134 05730e5d-ab1b-0410-a4ac-84af385074fa --- src/mumble/AudioWizard.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mumble/AudioWizard.cpp b/src/mumble/AudioWizard.cpp index 77982d45c..d1061cd97 100644 --- a/src/mumble/AudioWizard.cpp +++ b/src/mumble/AudioWizard.cpp @@ -37,7 +37,9 @@ AudioWizard::AudioWizard(QWidget *p) : QWizard(p) { bInit = true; setOption(QWizard::NoCancelButton, false); +#ifndef Q_OS_MAC resize(700, 500); +#endif addPage(qwpIntro = introPage()); addPage(qwpDevice = devicePage());