diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-30 02:15:56 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-30 02:25:09 +0100 |
commit | 6ac6c4131b7c043c69c6896d5199e13f054c9e20 (patch) | |
tree | 39f074985a7e382258bdc9da070a3ac58b4a8dc7 | |
parent | 20be243b54192d8d74b8f67d3b8c2dda68a317f5 (diff) | |
download | mgaonline-6ac6c4131b7c043c69c6896d5199e13f054c9e20.tar mgaonline-6ac6c4131b7c043c69c6896d5199e13f054c9e20.tar.gz mgaonline-6ac6c4131b7c043c69c6896d5199e13f054c9e20.tar.bz2 mgaonline-6ac6c4131b7c043c69c6896d5199e13f054c9e20.tar.xz mgaonline-6ac6c4131b7c043c69c6896d5199e13f054c9e20.zip |
fix two Entry pointing to the same reference (mga#12148)
bug introduced in commit 56bcaff85b7b8a98ffdf67118a4df873fe301882
on Nov 24 2009 (was: "(configure) make it work on 2008.x & 2009.x")
it wasn't visible in newer distro as we were relying on the other code
path
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | mgaapplet-config | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ - mdkapplet-config (mga#12148) o fix detecting if HScale widgets are supported + o fix two Entry pointing to the same reference in old compat mode Version 3.3 - 21 December 2013, Thierry Vignaud diff --git a/mgaapplet-config b/mgaapplet-config index c367d07f..c4ae5d28 100755 --- a/mgaapplet-config +++ b/mgaapplet-config @@ -78,7 +78,7 @@ sub configure() { width => 100, value_ref => \$config{UPDATE_FREQUENCY})) ], [ gtknew('Label', alignment => [ 0, 1 ], text => N("First check delay (minutes)")), - gtknew($is_hscale_unsupported ? ('Entry', text_ref => \$config{UPDATE_FREQUENCY}) + gtknew($is_hscale_unsupported ? ('Entry', text_ref => \$config{FIRST_CHECK_DELAY}) : ('HScale', digits => 0, lower => 5, |