X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBIntroPage.py;h=5a9f486401d3de750c4b6b0fa1924b5b1386dea1;hb=12a865a058c2c3da0e4da685158f3a506ffad876;hp=764d56173c8ca2e70956b87ba57864e34e44c041;hpb=ed0d4c55052f6f98007ea0e91e6c90fe8809425a;p=bertos.git diff --git a/wizard/BIntroPage.py b/wizard/BIntroPage.py index 764d5617..5a9f4864 100644 --- a/wizard/BIntroPage.py +++ b/wizard/BIntroPage.py @@ -28,7 +28,6 @@ # # Copyright 2008 Develer S.r.l. (http://www.develer.com/) # -# $Id: BFolderPage.py 2669 2009-04-25 07:58:45Z duplo $ # # Author: Lorenzo Berni # @@ -45,11 +44,13 @@ class BIntroPage(BWizardPage): Initial page of the wizard. Permit to select the project name and the directory where the project will be created. """ - + def __init__(self): BWizardPage.__init__(self, UI_LOCATION + "/intro_page.ui") self.setTitle(self.tr("Welcome in BeRTOS Wizard!")) - + pixmap = self.pageContent.imageLabel.pixmap() + self.pageContent.imageLabel.setPixmap(pixmap.scaled(300, 400, Qt.KeepAspectRatio)) + ## Overloaded QWizardPage methods ## def isComplete(self): @@ -57,6 +58,5 @@ class BIntroPage(BWizardPage): Overload of the QWizardPage isComplete method. """ return True - - #### + #### \ No newline at end of file