summaryrefslogtreecommitdiffstats
path: root/perl-install/install/gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-07-25 15:36:24 +0000
committerThierry Vignaud <tv@mandriva.org>2008-07-25 15:36:24 +0000
commit32091facf01e02c795175cb6badd4b0988f9325e (patch)
treecf825c883f9bdd401bb1723b04d04304dc784b83 /perl-install/install/gtk.pm
parentb348a1428d361437dd62010d6c25d54cf6a6f906 (diff)
downloaddrakx-backup-do-not-use-32091facf01e02c795175cb6badd4b0988f9325e.tar
drakx-backup-do-not-use-32091facf01e02c795175cb6badd4b0988f9325e.tar.gz
drakx-backup-do-not-use-32091facf01e02c795175cb6badd4b0988f9325e.tar.bz2
drakx-backup-do-not-use-32091facf01e02c795175cb6badd4b0988f9325e.tar.xz
drakx-backup-do-not-use-32091facf01e02c795175cb6badd4b0988f9325e.zip
(create_steps_window,install_theme) set window titles
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r--perl-install/install/gtk.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index e42b7542f..d83d4c940 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -95,7 +95,7 @@ sub install_theme {
load_rc($o, $o->{theme} ||= default_theme($o));
load_font($o);
- my $win = gtknew('Window', widget_name => 'background');
+ my $win = gtknew('Window', widget_name => 'background', title => 'root window');
$win->realize;
mygtk2::set_root_window_background_with_gc($win->style->bg_gc('normal'));
}
@@ -137,7 +137,7 @@ sub create_steps_window {
my $offset = 20;
$o->{steps_window} =
- gtknew('Window', width => ($::stepswidth - $offset), widget_name => 'Steps',
+ gtknew('Window', width => ($::stepswidth - $offset), widget_name => 'Steps', title => 'Steps',
position => [ lang::text_direction_rtl() ? $::rootwidth - $::stepswidth : $offset, 0 ],
child => gtknew('VBox', spacing => 6, children_tight => \@l));
$o->{steps_window}->show;