Sun, 18 Mar 2012 19:30:29 +0100
Fixed an issue in the sync assistant dialog on Windows.
Documentation/Help/source.qch | file | annotate | diff | comparison | revisions | |
Helpviewer/Sync/SyncAssistantDialog.py | file | annotate | diff | comparison | revisions |
--- a/Helpviewer/Sync/SyncAssistantDialog.py Sun Mar 18 19:10:59 2012 +0100 +++ b/Helpviewer/Sync/SyncAssistantDialog.py Sun Mar 18 19:30:29 2012 +0100 @@ -19,6 +19,7 @@ from . import SyncGlobals import UI.PixmapCache +import Globals class SyncAssistantDialog(QWizard): @@ -45,3 +46,5 @@ self.setPixmap(QWizard.BackgroundPixmap, UI.PixmapCache.getPixmap("eric256.png")) self.setMinimumSize(650, 450) + if Globals.isWindowsPlatform(): + self.setWizardStyle(QWizard.ModernStyle)