From 32091facf01e02c795175cb6badd4b0988f9325e Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 25 Jul 2008 15:36:24 +0000 Subject: (create_steps_window,install_theme) set window titles --- perl-install/install/gtk.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/install/gtk.pm') 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; -- cgit v1.2.1