diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-09-29 09:14:28 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-09-29 09:14:28 +0200 |
| commit | 8dd31065ff6967bc88eea3060a782232f6481026 (patch) | |
| tree | 2e660a09c09b2e9c28c1fd247cf0a4b6fbd879c5 /src/Gui | |
| parent | 8c6365855ad831022174db1295e327382cf39dc9 (diff) | |
| download | abrt-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/Gui')
| -rw-r--r-- | src/Gui/CCMainWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py index 29b9856..1502c0d 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: |
