X-Git-Url: http://git.onelab.eu/?p=sface.git;a=blobdiff_plain;f=sface%2Fmainwindow.py;h=a8e7d3338a818af86724267fd5d5072cd069d489;hp=b361b22a0078bcc9b49b42116c96846aa49b5b2b;hb=71265d697bc9e71beac6fabbb9dd775a90fbdfe7;hpb=194e800bc6c16d787fff48410a4ef71928efe8fb diff --git a/sface/mainwindow.py b/sface/mainwindow.py index b361b22..a8e7d33 100644 --- a/sface/mainwindow.py +++ b/sface/mainwindow.py @@ -35,7 +35,7 @@ def load_screens(dirname): # we want the stock screens to show up in a specific order. plugins can # show up in any order afterward. - sort_order = ["mainscreen", "configscreen", "helpscreen"] + sort_order = ["mainscreen", "userscreen", "configscreen", "helpscreen"] sort_order.reverse() for modname in sort_order: if modname in modnames: @@ -96,6 +96,7 @@ class Nav(QWidget): class Status(QLabel): def __init__(self, parent=None): QLabel.__init__(self, "", parent) + self.setMaximumWidth(640) self.sliceUpdateDate() def set(self, msg, timeout): @@ -110,7 +111,7 @@ class Status(QLabel): creation_time = os.stat(rspec_file).st_ctime last_update = time.ctime(creation_time) - self.set("Slice data last updated on %s" % last_update, timeout=None) + self.set("Slice data last refreshed on %s" % last_update, timeout=None) def reset(self): self.setText("")