[gnome-shell] Revert "Background: Drop "saturation" related source"
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] Revert "Background: Drop "saturation" related source"
- Date: Wed, 18 Sep 2013 11:55:37 +0000 (UTC)
commit 7f1b07b76f7fd4982cef98f8ef64afcf194264e5
Author: Rico Tzschichholz <ricotz ubuntu com>
Date: Wed Sep 18 13:54:54 2013 +0200
Revert "Background: Drop "saturation" related source"
This reverts commit 2f35ad6e655dd07fc3a756680fcafaa74cd36a21.
js/ui/background.js | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
---
diff --git a/js/ui/background.js b/js/ui/background.js
index 6e6bd16..246060a 100644
--- a/js/ui/background.js
+++ b/js/ui/background.js
@@ -315,6 +315,7 @@ const Background = new Lang.Class({
this._brightness = 1.0;
this._vignetteSharpness = 0.2;
+ this._saturation = 1.0;
this._cancellable = new Gio.Cancellable();
this.isLoaded = false;
@@ -411,6 +412,7 @@ const Background = new Lang.Class({
},
_addImage: function(content, index, filename) {
+ content.saturation = this._saturation;
content.brightness = this._brightness;
content.vignette_sharpness = this._vignetteSharpness;
@@ -426,6 +428,7 @@ const Background = new Lang.Class({
},
_updateImage: function(content, index, filename) {
+ content.saturation = this._saturation;
content.brightness = this._brightness;
content.vignette_sharpness = this._vignetteSharpness;
@@ -583,6 +586,24 @@ const Background = new Lang.Class({
this._loadFile(filename);
},
+ get saturation() {
+ return this._saturation;
+ },
+
+ set saturation(saturation) {
+ this._saturation = saturation;
+
+ if (this._pattern && this._pattern.content)
+ this._pattern.content.saturation = saturation;
+
+ let keys = Object.keys(this._images);
+ for (let i = 0; i < keys.length; i++) {
+ let image = this._images[keys[i]];
+ if (image && image.content)
+ image.content.saturation = saturation;
+ }
+ },
+
get brightness() {
return this._brightness;
},
@@ -726,6 +747,7 @@ const BackgroundManager = new Lang.Class({
let newBackground = this._createBackground(monitorIndex);
newBackground.vignetteSharpness = background.vignetteSharpness;
newBackground.brightness = background.brightness;
+ newBackground.saturation = background.saturation;
newBackground.visible = background.visible;
newBackground.loadedSignalId = newBackground.connect('loaded',
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]