diff options
| author | Jiri Moskovcak <jmoskovc@localhost.localdomain> | 2009-11-20 11:21:11 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@localhost.localdomain> | 2009-11-20 11:21:11 +0100 |
| commit | a9525e69060cb8ff1bd173475d12088c57ed82ea (patch) | |
| tree | f2f07d5ab7a2fb17a688c8a47ea851be873c4a45 /src/Gui/CCMainWindow.py | |
| parent | 47adbc71583d773d2c5c5f464b4c1583f92f9acc (diff) | |
| download | abrt-a9525e69060cb8ff1bd173475d12088c57ed82ea.tar.gz abrt-a9525e69060cb8ff1bd173475d12088c57ed82ea.tar.xz abrt-a9525e69060cb8ff1bd173475d12088c57ed82ea.zip | |
GUI: don't read the g-k every time we want to use the setting
- if g-k is not available, then user can set the settings at least
for the current ABRT session, but it's lost if we forcibly reload it
everytime
Diffstat (limited to 'src/Gui/CCMainWindow.py')
| -rw-r--r-- | src/Gui/CCMainWindow.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Gui/CCMainWindow.py b/src/Gui/CCMainWindow.py index 3ada6f2..ee802a8 100644 --- a/src/Gui/CCMainWindow.py +++ b/src/Gui/CCMainWindow.py @@ -305,7 +305,9 @@ class MainWindow(): self.pBarWindow.show_all() self.timer = gobject.timeout_add(100, self.progress_update_cb) reporters_settings = {} - self.pluginlist = getPluginInfoList(self.ccdaemon, refresh=True) + # self.pluginlist = getPluginInfoList(self.ccdaemon, refresh=True) + # don't force refresh! + self.pluginlist = getPluginInfoList(self.ccdaemon) for plugin in self.pluginlist.getReporterPlugins(): reporters_settings[str(plugin)] = plugin.Settings self.ccdaemon.Report(result, reporters_settings) |
