diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-23 21:18:28 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-23 21:18:28 +0000 |
commit | 6c85915744f3a63f7f72cebdd7fe0addf38badf6 (patch) | |
tree | 7bb977c865c2707941978ebffdb52c43cd925dad /perl-install | |
parent | 0c5081366c8ebff1bada2c15ee997e3449921139 (diff) | |
download | drakx-6c85915744f3a63f7f72cebdd7fe0addf38badf6.tar drakx-6c85915744f3a63f7f72cebdd7fe0addf38badf6.tar.gz drakx-6c85915744f3a63f7f72cebdd7fe0addf38badf6.tar.bz2 drakx-6c85915744f3a63f7f72cebdd7fe0addf38badf6.tar.xz drakx-6c85915744f3a63f7f72cebdd7fe0addf38badf6.zip |
fix sizing some labels (workarounding infamous 6 years old gnome bug 101968)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rwxr-xr-x | perl-install/standalone/drakbug | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 326be27b1..93a927ae3 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- drakbug: + o fix sizing some labels (workarounding infamous 6 years old gnome + bug #101968) - harddrake: auto-configure floppies (may require to load floppy module at first boot on a new system) diff --git a/perl-install/standalone/drakbug b/perl-install/standalone/drakbug index 08e8eca83..40e12e495 100755 --- a/perl-install/standalone/drakbug +++ b/perl-install/standalone/drakbug @@ -129,9 +129,10 @@ sub format_trace_with_message { my $parent_uid = get_parent_uid(); +my $width = 600; gtkadd($window->{window}, gtkpack_(Gtk2::VBox->new(0, 5), - 0, gtknew('Title1', label => $mandrake_release), + 0, gtknew('Title1', label => $mandrake_release, width => $width), 1, create_scrolled_window( gtknew('TextView', editable => 0, height => 200, text => [ @@ -149,7 +150,7 @@ gtkadd($window->{window}, N("To submit a bug report, click on the report button. \nThis will open a web browser window on %s where you'll find a form to fill in. The information displayed above will be transferred to that server. \nThings useful to include in your report are the output of lspcidrake -v, kernel version, and /proc/cpuinfo.", $wizard_name) ] ])), - 0, gtknew('Title2', label => N("Please describe what you were doing when it crashed:")), + 0, gtknew('Title2', label => N("Please describe what you were doing when it crashed:"), width => $width), if_($incident, 1, create_scrolled_window( $user_descr = gtknew('TextView', editable => 1, height => 200) |