diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-07 16:57:14 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-03-07 16:57:14 +0100 |
commit | 60f1e4d9191a3bc046bf5659c57ed98df5ebb888 (patch) | |
tree | 26bb34216135e70aee5698e43ca30fc22bd54a0d /portato/gui/gtk | |
parent | b8f90c7cadb2f56daf9761908a02bd67cfee8d99 (diff) | |
download | portato-60f1e4d9191a3bc046bf5659c57ed98df5ebb888.tar.gz portato-60f1e4d9191a3bc046bf5659c57ed98df5ebb888.tar.bz2 portato-60f1e4d9191a3bc046bf5659c57ed98df5ebb888.zip |
Small changes
Diffstat (limited to 'portato/gui/gtk')
-rw-r--r-- | portato/gui/gtk/windows.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 7036ecb..50acdb8 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -589,7 +589,9 @@ class PackageTable: self.linkBox.add(link) # useflags - flags = ", ".join(itertools.ifilterfalse(pkg.use_expanded, pkg.get_iuse_flags())) + flaglist = list(itertools.ifilterfalse(pkg.use_expanded, pkg.get_iuse_flags())) + flaglist.sort() + flags = ", ".join(flaglist) if flags: self.useFlagsLL.show() @@ -866,6 +868,7 @@ class PackageTable: else: self.unmergeBtn.set_sensitive(True) + self.vb.show_all() return True def cb_button_pressed (self, b, event): |