From 8dd31065ff6967bc88eea3060a782232f6481026 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 29 Sep 2009 09:14:28 +0200 Subject: GUI: reversed the dumplist, so the latest crashes are at the top --- src/Gui/CCMainWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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: -- cgit