diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/ugtk3.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index f5661b4ea..b886da90e 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,5 @@ - detect ovirt too (mga#19308) +- fix gtk+3.22 regression (mga#19406) - sync nonfree firmware list with kernel-4.7 Version 17.54 - 13 August 2016 diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm index ff731a4bb..e23e70201 100644 --- a/perl-install/ugtk3.pm +++ b/perl-install/ugtk3.pm @@ -1505,7 +1505,7 @@ use ugtk3 qw(:helpers :wrappers); sub set_style { my ($w) = @_; my $pl = Gtk3::CssProvider->new; - $pl->load_from_data("Layout, GtkLabel {font: 15px; background-color: #ffffff }"); + $pl->load_from_data("Layout, GtkLabel { font-size: 15px; background-color: #ffffff }"); $w->{label}->get_style_context->add_provider($pl, Gtk3::STYLE_PROVIDER_PRIORITY_APPLICATION); my $p = Gtk3::CssProvider->new; $w->get_style_context->add_provider($p, Gtk3::STYLE_PROVIDER_PRIORITY_APPLICATION); |