summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/ugtk3.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index c65b6c94b..63cae8189 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -3,6 +3,7 @@
o fix Gtk2 banners' text position (mga#11778)
- Banners:
o align text to left instead of centering it
+ o text is rendered as blue again
Version 16.0 - 23 November 2013
diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm
index bbca18213..8f8fdcc21 100644
--- a/perl-install/ugtk3.pm
+++ b/perl-install/ugtk3.pm
@@ -1384,7 +1384,7 @@ sub new {
my $img = gtknew('Image', pixbuf => $blue_part, alignment => [ 0, 0 ]);
my $label = gtknew('Label', text => $text, padding => [ 100, 0 ], alignment => [ 0, 0.5 ]); # for update_text()
- my $w = gtknew('Overlay', height => $d_height, main_child => $label, children => [
+ my $w = gtknew('Overlay', height => $d_height, widget_name => 'Banner', main_child => $label, children => [
gtknew('Overlay', main_child => $img, children => [
my $icon_img = gtknew('Image', pixbuf => $icon, alignment => [ 0, 0 ]),
])