[gnome-shell] Background: don't check draw-background key



commit 6fcc7e3e2379ff342ebac9365e3faeeab0c8000d
Author: Giovanni Campagna <gcampagna src gnome org>
Date:   Fri Feb 22 17:41:11 2013 +0100

    Background: don't check draw-background key
    
    The key was removed from gsettings-desktop-schemas, GNOME should
    always draw a background: the key existed to support xsetroot, but
    we no longer read the _XROOTPMAP_ID.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=694463

 js/ui/background.js |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/js/ui/background.js b/js/ui/background.js
index c1c0616..ef4dad3 100644
--- a/js/ui/background.js
+++ b/js/ui/background.js
@@ -14,7 +14,6 @@ const Params = imports.misc.params;
 const Tweener = imports.ui.tweener;
 
 const BACKGROUND_SCHEMA = 'org.gnome.desktop.background';
-const DRAW_BACKGROUND_KEY = 'draw-background';
 const PRIMARY_COLOR_KEY = 'primary-color';
 const SECONDARY_COLOR_KEY = 'secondary-color';
 const COLOR_SHADING_TYPE_KEY = 'color-shading-type';
@@ -490,11 +489,6 @@ const Background = new Lang.Class({
     },
 
     _load: function () {
-        if (!this._settings.get_boolean(DRAW_BACKGROUND_KEY)) {
-            this._setLoaded();
-            return;
-        }
-
         this._cache = getBackgroundCache();
 
         this._loadPattern(this._cache);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]