summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCReporterDialog.py
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-03-09 16:25:19 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2010-03-09 16:25:19 +0100
commit23f5055da95fa5ea60912c9b344836746e24ef6a (patch)
tree55da5c7b377cc81dd5a94c5ab2317e8c5cb97794 /src/Gui/CCReporterDialog.py
parentf4b0eaf367da6905b1f6f00304a866fb69a8b2d9 (diff)
downloadabrt-23f5055da95fa5ea60912c9b344836746e24ef6a.tar.gz
abrt-23f5055da95fa5ea60912c9b344836746e24ef6a.tar.xz
abrt-23f5055da95fa5ea60912c9b344836746e24ef6a.zip
GUI: fixed the report window height on small display rhbz#563919
Diffstat (limited to 'src/Gui/CCReporterDialog.py')
-rw-r--r--src/Gui/CCReporterDialog.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py
index 3b3fdd89..a1845345 100644
--- a/src/Gui/CCReporterDialog.py
+++ b/src/Gui/CCReporterDialog.py
@@ -37,6 +37,7 @@ class ReporterDialog():
self.builder.add_from_file(builderfile)
#Get the Main Window, and connect the "destroy" event
self.window = self.builder.get_object("reporter_dialog")
+ self.window.set_default_size(-1, 800)
self.window.connect("response", self.on_response, daemon)
if parent:
self.window.set_position(gtk.WIN_POS_CENTER_ON_PARENT)