diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-07-25 15:36:24 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-07-25 15:36:24 +0000 |
commit | 32091facf01e02c795175cb6badd4b0988f9325e (patch) | |
tree | cf825c883f9bdd401bb1723b04d04304dc784b83 /perl-install/install/gtk.pm | |
parent | b348a1428d361437dd62010d6c25d54cf6a6f906 (diff) | |
download | drakx-32091facf01e02c795175cb6badd4b0988f9325e.tar drakx-32091facf01e02c795175cb6badd4b0988f9325e.tar.gz drakx-32091facf01e02c795175cb6badd4b0988f9325e.tar.bz2 drakx-32091facf01e02c795175cb6badd4b0988f9325e.tar.xz drakx-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.pm | 4 |
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; |