X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=sface%2Fmainwindow.py;h=c5e0183358b5900424a82b9f20a120d8d85e8631;hb=b9b34de9896478db27e37b1d7bb9cebb14f2c2c7;hp=19f05a9ebc1250c1223e6bdf5f3bfb5d19bece1e;hpb=1790ec67340d64652164e895f1c7620580b40019;p=sface.git diff --git a/sface/mainwindow.py b/sface/mainwindow.py index 19f05a9..c5e0183 100644 --- a/sface/mainwindow.py +++ b/sface/mainwindow.py @@ -28,7 +28,7 @@ class Nav(QWidget): self.title = QLabel("", self) scene=QGraphicsScene() - pixmap = QPixmap(locate_image_file('graphic-sfa')) + pixmap = QPixmap(locate_image_file('graphic-sfa64')) logolabel=QLabel("",self) logolabel.setPixmap(pixmap) self.main = QLabel("", self) @@ -44,7 +44,9 @@ class Nav(QWidget): hlayout.addWidget(logolabel) hlayout.addWidget(self.title) hlayout.addStretch() - hlayout.addWidget(QLabel("Go to: ", self)) + gotolabel=QLabel("Go to: ", self) + gotolabel.setAlignment(Qt.AlignRight) + hlayout.addWidget(gotolabel) hlayout.addWidget(self.main) hlayout.addWidget(self.config) hlayout.addWidget(self.help)