diff options
author | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-03-09 16:25:19 +0100 |
---|---|---|
committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-03-09 16:25:19 +0100 |
commit | 23f5055da95fa5ea60912c9b344836746e24ef6a (patch) | |
tree | 55da5c7b377cc81dd5a94c5ab2317e8c5cb97794 /src/Gui/CCReporterDialog.py | |
parent | f4b0eaf367da6905b1f6f00304a866fb69a8b2d9 (diff) | |
download | abrt-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.py | 1 |
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) |