diff options
-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(); |