summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mlcoch <tmlcoch@redhat.com>2010-08-16 17:09:07 +0200
committerTomas Mlcoch <tmlcoch@redhat.com>2010-08-16 17:09:07 +0200
commitdbaa7ea7278212a8d5ffa43193ea6038b5108a7e (patch)
tree6fa231b041e3a49a8bb49582b2fdcb872a893111
parentfe6171d430c63285a5f2356429afa3a7bfa96981 (diff)
downloadfirstaidkit-dbaa7ea7278212a8d5ffa43193ea6038b5108a7e.tar.gz
firstaidkit-dbaa7ea7278212a8d5ffa43193ea6038b5108a7e.tar.xz
firstaidkit-dbaa7ea7278212a8d5ffa43193ea6038b5108a7e.zip
Flows combo box improvement.
-rw-r--r--frontend/frontend_gtk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/frontend_gtk.py b/frontend/frontend_gtk.py
index eb6b8b8..e66799d 100644
--- a/frontend/frontend_gtk.py
+++ b/frontend/frontend_gtk.py
@@ -433,7 +433,7 @@ class MainWindow(object):
self.flow_list_store = gtk.ListStore(gobject.TYPE_STRING, gobject.TYPE_STRING)
self.flow_list_store_diagnose = -1
for idx,n in enumerate(sorted(self.flow_list_data)):
- self.flow_list_store.append([n, n])
+ self.flow_list_store.append([n, pluginsystem.get_title(n)])
if n=="diagnose":
self.flow_list_store_diagnose = idx
self.flow_list = self._glade.get_widget("combo_Advanced_Flows")