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 /mgaapplet-config | |
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
Diffstat (limited to 'mgaapplet-config')
-rwxr-xr-x | mgaapplet-config | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |