diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-30 02:13:45 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-30 02:25:09 +0100 |
commit | 20be243b54192d8d74b8f67d3b8c2dda68a317f5 (patch) | |
tree | dceb00a2a3f2ae2dd79fc1bc5ef18a0b8f125a06 | |
parent | a24935371c4ee92c3ba72f553d19cc968d3f0be7 (diff) | |
download | mgaonline-20be243b54192d8d74b8f67d3b8c2dda68a317f5.tar mgaonline-20be243b54192d8d74b8f67d3b8c2dda68a317f5.tar.gz mgaonline-20be243b54192d8d74b8f67d3b8c2dda68a317f5.tar.bz2 mgaonline-20be243b54192d8d74b8f67d3b8c2dda68a317f5.tar.xz mgaonline-20be243b54192d8d74b8f67d3b8c2dda68a317f5.zip |
fix missing arguments in widget creation test (mga#12148)
regression introduced in commit 6c1fa5cd83b0d46528ee8cecda42f9b1adca0b32
on Nov 18 2013 ("use (my|u)gtk3 instead of *tk2") when switching from
gtk2 to gtk3
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | mgaapplet-config | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- mdkapplet-config (mga#12148) + o fix detecting if HScale widgets are supported + Version 3.3 - 21 December 2013, Thierry Vignaud - fix doing nothing when clicking on notifications buttons (mga#12041) diff --git a/mgaapplet-config b/mgaapplet-config index fe89a4c9..c367d07f 100755 --- a/mgaapplet-config +++ b/mgaapplet-config @@ -57,7 +57,7 @@ sub configure() { # config file has negative options but GUI want positive options (HIG): invbools_for_display(\%config); - my $_ww = eval { gtknew('HScale', digits => 5) }; + my $_ww = eval { gtknew('HScale', digits => 5, value => 3, lower => 0) }; my $is_hscale_unsupported = $@; my $product = translate_product(); |