diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-24 12:30:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-24 12:30:03 +0000 |
commit | e2269133ff8b1892127ebcdb7dd21d708b4526bc (patch) | |
tree | d6e67e2239fba77548625d827f69e33c55f5c557 | |
parent | 8e443d834d9eba154fe0b7e54d86a9670365ee56 (diff) | |
download | control-center-e2269133ff8b1892127ebcdb7dd21d708b4526bc.tar control-center-e2269133ff8b1892127ebcdb7dd21d708b4526bc.tar.gz control-center-e2269133ff8b1892127ebcdb7dd21d708b4526bc.tar.bz2 control-center-e2269133ff8b1892127ebcdb7dd21d708b4526bc.tar.xz control-center-e2269133ff8b1892127ebcdb7dd21d708b4526bc.zip |
further switch from ugtk2 to mygtk2 to build splash window
-rwxr-xr-x | control-center | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/control-center b/control-center index 3b3d13cd..68adb0ee 100755 --- a/control-center +++ b/control-center @@ -94,14 +94,14 @@ $window_splash->set_title(N("Mandriva Linux Control Center")); $window_splash->set_position('center_always'); $window_splash->add(gtkadd(gtkset_shadow_type(Gtk2::Frame->new, 'etched_out'), gtknew('Fixed', has_window => 1, - child => gtkpack(Gtk2::VBox->new(0, 0), + child => gtknew('VBox', homogenous => 0, spacing => 0, children_loose => [ if_(-r "$themes_dir/$theme/splash_screen.png", gtkcreate_img("splash_screen")), gtkset_markup(Gtk2::Label->new, join('', qq(\n<span size="x-large" weight="heavy">), N("Mandriva Linux Control Center"), "</span>"), ), Gtk2::Label->new(N("Loading... Please wait") . "\n"), - ), + ]), x => 0, y => 0, realize => sub { ugtk2::set_back_pixmap($_[0]) }), ) ); |