From fb406ac2bd88b6c02d8bc8a814cc3095b9bd4868 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 8 Feb 2010 22:22:49 +0100 Subject: GUI: respect system settings for toolbars rhbz#552161 --- src/Gui/ccgui.glade | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/Gui/ccgui.glade b/src/Gui/ccgui.glade index 237f23a..652e6ff 100644 --- a/src/Gui/ccgui.glade +++ b/src/Gui/ccgui.glade @@ -208,7 +208,6 @@ Patrick Connelly <pcon@fedoraproject.org> True - both True @@ -225,7 +224,6 @@ Patrick Connelly <pcon@fedoraproject.org> True - False Report Report gtk-go-up -- cgit From c4425b1a6f3be01c0e7b8d58ebfd2b2df836ed0a Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 9 Feb 2010 00:14:14 +0100 Subject: GUI: fixed exception in plugin settings dialog rhbz#560851 --- src/Gui/PluginsSettingsDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Gui/PluginsSettingsDialog.py b/src/Gui/PluginsSettingsDialog.py index 0ba390d..d6129b1 100644 --- a/src/Gui/PluginsSettingsDialog.py +++ b/src/Gui/PluginsSettingsDialog.py @@ -141,7 +141,7 @@ class PluginsSettingsDialog: def on_bConfigurePlugin_clicked(self, button, pluginview): pluginsListStore, path = pluginview.get_selection().get_selected_rows() if not path: - self.builder.get_object("lDescription").set_label(_("Can't get plugin description")) + gui_info_dialog(_("Please select a plugin from the list to edit it's options."), self.window) return # this should work until we keep the row object in the last position pluginfo = pluginsListStore.get_value(pluginsListStore.get_iter(path[0]), pluginsListStore.get_n_columns()-1) -- cgit From 0822de0cd0017929b66a231734e9d01a5e4971ea Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 9 Feb 2010 14:25:37 +0100 Subject: GUI: make text fields in report wnd more consistent (no border for all) Signed-off-by: Denys Vlasenko --- src/Gui/report.glade | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/Gui/report.glade b/src/Gui/report.glade index e7f37ec..cff0dc8 100644 --- a/src/Gui/report.glade +++ b/src/Gui/report.glade @@ -297,7 +297,6 @@ True automatic automatic - in 200 -- cgit From 726a6d328e84b9409acdd57e8575225b2be9ee48 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Tue, 9 Feb 2010 14:35:48 +0100 Subject: GUI: only urls should be clickable --- 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 0d9b0a2..7967028 100644 --- a/src/Gui/CCMainWindow.py +++ b/src/Gui/CCMainWindow.py @@ -234,7 +234,7 @@ class MainWindow(): for message in dump.getMessage().split(';'): if message: message_clean = message.strip() - if "http" in message_clean[0:5] or "file:///"[0:8] in message_clean: + if "http" in message_clean[0:5] or "file:///" in message_clean[0:8]: report_message = "%s" % (message_clean, message_clean) else: report_message = message_clean -- cgit From ea11e91fd0ddfa51568e9d52e7ce0dc19971c745 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 9 Feb 2010 14:48:27 +0100 Subject: GUI: remove code which unconditionally throws out BIN files Signed-off-by: Denys Vlasenko --- src/Gui/CCReporterDialog.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py index 816164b..bc4a1e0 100644 --- a/src/Gui/CCReporterDialog.py +++ b/src/Gui/CCReporterDialog.py @@ -290,11 +290,11 @@ class ReporterDialog(): self.tevHowToReproduce.set_buffer(buff) def dehydrate(self): - # handle attachments - vbAttachments = self.builder.get_object("vbAttachments") - for attachment in vbAttachments.get_children(): - #print "%s file %s" % (["not sending","sending"][attachment.get_active()], attachment.get_label()) - del self.report[attachment.item] + ## # handle attachments + ## vbAttachments = self.builder.get_object("vbAttachments") + ## for attachment in vbAttachments.get_children(): + ## #print "%s file %s" % (["not sending","sending"][attachment.get_active()], attachment.get_label()) + ## del self.report[attachment.item] # handle comment buff = self.tvComment.get_buffer() -- cgit