summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCMainWindow.py
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-13 18:02:22 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-13 18:02:22 +0100
commit7f1a96006b50365f54ff94d110ee4011c1b9a32a (patch)
tree1fe4fd685d2ebd96dba5b3d36531ce77b1684884 /src/Gui/CCMainWindow.py
parent9e3970c52f800739b4f554a2ec4ef236b566fb00 (diff)
downloadabrt-7f1a96006b50365f54ff94d110ee4011c1b9a32a.tar.gz
abrt-7f1a96006b50365f54ff94d110ee4011c1b9a32a.tar.xz
abrt-7f1a96006b50365f54ff94d110ee4011c1b9a32a.zip
fix plugin type display in GUI
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Gui/CCMainWindow.py')
-rw-r--r--src/Gui/CCMainWindow.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py
index 77ce3d3a..f4e3a73d 100644
--- a/src/Gui/CCMainWindow.py
+++ b/src/Gui/CCMainWindow.py
@@ -69,9 +69,9 @@ class MainWindow():
#icon, package_name, application, date, crash_rate, user, is_reported, ?object?
self.dumpsListStore = gtk.ListStore(gtk.gdk.Pixbuf, str,str,str,str,str,bool, object)
# set filter
- self.modelfilter = self.dumpsListStore.filter_new()
- self.modelfilter.set_visible_func(self.filter_dumps, None)
- self.dlist.set_model(self.modelfilter)
+ modelfilter = self.dumpsListStore.filter_new()
+ modelfilter.set_visible_func(self.filter_dumps, None)
+ self.dlist.set_model(modelfilter)
# add pixbuff separatelly
icon_column = gtk.TreeViewColumn(_("Icon"))
icon_column.cell = gtk.CellRendererPixbuf()