summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbug
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-23 21:18:28 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-23 21:18:28 +0000
commit6c85915744f3a63f7f72cebdd7fe0addf38badf6 (patch)
tree7bb977c865c2707941978ebffdb52c43cd925dad /perl-install/standalone/drakbug
parent0c5081366c8ebff1bada2c15ee997e3449921139 (diff)
downloaddrakx-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/standalone/drakbug')
-rwxr-xr-xperl-install/standalone/drakbug5
1 files changed, 3 insertions, 2 deletions
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)