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
This commit is contained in:
Giovanni Campagna 2013-02-22 17:41:11 +01:00
parent 95602eb85d
commit 6fcc7e3e23

View File

@ -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);