summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-09-29 09:14:28 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-09-29 09:14:28 +0200
commit8dd31065ff6967bc88eea3060a782232f6481026 (patch)
tree2e660a09c09b2e9c28c1fd247cf0a4b6fbd879c5 /src
parent8c6365855ad831022174db1295e327382cf39dc9 (diff)
downloadabrt-8dd31065ff6967bc88eea3060a782232f6481026.tar.gz
abrt-8dd31065ff6967bc88eea3060a782232f6481026.tar.xz
abrt-8dd31065ff6967bc88eea3060a782232f6481026.zip
GUI: reversed the dumplist, so the latest crashes are at the top
Diffstat (limited to 'src')
-rw-r--r--src/Gui/CCMainWindow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py
index 29b9856b..1502c0dd 100644
--- a/src/Gui/CCMainWindow.py
+++ b/src/Gui/CCMainWindow.py
@@ -189,7 +189,7 @@ class MainWindow():
dumplist = getDumpList(self.ccdaemon, refresh=True)
except Exception, e:
gui_error_message(_("Error while loading the dumplist, please check if abrt daemon is running\n %s" % e))
- for entry in dumplist:
+ for entry in dumplist[::-1]:
try:
icon = get_icon_for_package(self.theme, entry.getPackageName())
except: