diff options
author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-11-03 15:36:45 +0100 |
---|---|---|
committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-11-03 15:36:45 +0100 |
commit | e925d42c9c0b5367354dbd6125bb127756e3977a (patch) | |
tree | a4fd39bbd389c8f76d601703d2e2d5e4c4fafc33 | |
parent | d07436a34ce9da5909c8b1e8999691f3f26ae42f (diff) | |
download | abrt-e925d42c9c0b5367354dbd6125bb127756e3977a.tar.gz abrt-e925d42c9c0b5367354dbd6125bb127756e3977a.tar.xz abrt-e925d42c9c0b5367354dbd6125bb127756e3977a.zip |
just changed comments
-rw-r--r-- | src/Daemon/abrt.conf | 1 | ||||
-rw-r--r-- | src/Gui/CCMainWindow.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/Daemon/abrt.conf b/src/Daemon/abrt.conf index ee44cd90..a02cef44 100644 --- a/src/Daemon/abrt.conf +++ b/src/Daemon/abrt.conf @@ -30,5 +30,4 @@ Python = Bugzilla, Logger [ Cron ] # h:m - at h:m an action plugin is activated # s - every s seconds is an action plugin activated -# Disable kerneloops since it's not part of default install 120 = KerneloopsScanner diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py index 77e9e333..926ba9ef 100644 --- a/src/Gui/CCMainWindow.py +++ b/src/Gui/CCMainWindow.py @@ -211,7 +211,7 @@ class MainWindow(): else: n = self.dumpsListStore.append([icon, entry.getPackage(), entry.getExecutable(), entry.getTime("%c"), entry.getCount(), entry.isReported(), entry]) - # activate the last row if any.. + # activate the first row if any.. if n: # we can use (0,) as path for the first row, but what if API changes? self.dlist.set_cursor(self.dumpsListStore.get_path(self.dumpsListStore.get_iter_first())) |