diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-12-13 22:26:37 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-12-13 22:26:37 +0000 |
commit | 1043558a4fef42be3e223adde73bf0f827948e57 (patch) | |
tree | fec49b1feb4c9bbb5b6fa868cc77c39bd4defda2 | |
parent | 0745084ea5fbf8748193b18c22d73bf595c234e2 (diff) | |
download | control-center-1043558a4fef42be3e223adde73bf0f827948e57.tar control-center-1043558a4fef42be3e223adde73bf0f827948e57.tar.gz control-center-1043558a4fef42be3e223adde73bf0f827948e57.tar.bz2 control-center-1043558a4fef42be3e223adde73bf0f827948e57.tar.xz control-center-1043558a4fef42be3e223adde73bf0f827948e57.zip |
fix text position over splash screen (mga#5873)
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | control-center | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ +- fix text position over splash screen (mga#5873) - popup a confirm dialog before exiting - track main_window (should fix quite some dialog placement bugs) diff --git a/control-center b/control-center index fd631e11..9e630107 100755 --- a/control-center +++ b/control-center @@ -103,7 +103,7 @@ $window_splash->add(gtknew('Fixed', widget_name => 'Steps', children => [ [ gtknew('Image_using_pixbuf', file => 'splash_screen'), 0, 0 ], [ gtknew('Label', text => N("%s Control Center", $branding)), 21, 60 ], - [ gtknew('Label', text => N("Loading... Please wait")), 21, 175 ], + [ gtknew('Label', text => N("Loading... Please wait")), 21, 85 ], ]), ); $window_splash->show_all; |