From ec78dd60fc6e62bc3492dbaecc98ba4f08a70934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= Date: Tue, 24 Jul 2012 18:47:54 +0200 Subject: [PATCH] magnifier: 'color-saturation' is a double not a boolean --- js/ui/magnifier.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/magnifier.js b/js/ui/magnifier.js index b58af2d4c..a3813c3a4 100644 --- a/js/ui/magnifier.js +++ b/js/ui/magnifier.js @@ -602,7 +602,7 @@ const Magnifier = new Lang.Class({ // Applies only to the first zoom region. if (this._zoomRegions.length) { this._zoomRegions[0].setColorSaturation( - this._settings.get_boolean(COLOR_SATURATION_KEY) + this._settings.get_double(COLOR_SATURATION_KEY) ); } },