diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2015-05-22 12:48:11 +0200 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2015-12-04 11:28:25 +0100 |
commit | f0c645c7c33867be239a0f637909fa8314e53d92 (patch) | |
tree | c70d352ddcc502f5c59da18214e360d1e865c90a /data | |
parent | 7899b3969e0c281dd7a618277b9aba2b782f94d8 (diff) | |
download | totem-f0c645c7c33867be239a0f637909fa8314e53d92.tar.gz |
plugins: Don't save builtin plugins to GSettings
Builtin plugins are not meant to be disabled by users and are thus not
part of user settings.
Do this by filtering out builtin plugins before writing and inserting
them when reading from the settings key.
This also stops Totem from writing to gsettings on startup. The list of
builtin plugins was not in sync with the default value of the
active-plugins gsettings key.
https://bugzilla.gnome.org/show_bug.cgi?id=749722
Diffstat (limited to 'data')
-rw-r--r-- | data/org.gnome.totem.gschema.xml.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/org.gnome.totem.gschema.xml.in b/data/org.gnome.totem.gschema.xml.in index 15ed6173a..847b01c54 100644 --- a/data/org.gnome.totem.gschema.xml.in +++ b/data/org.gnome.totem.gschema.xml.in @@ -77,7 +77,7 @@ <summary>Whether to autoload external chapter files when a movie is loaded</summary> </key> <key name="active-plugins" type="as"> - <default>['skipto','chapters','screenshot','media_player_keys','screensaver','movie-properties','save-file']</default> + <default>[]</default> <summary>Active plugins list</summary> <description>A list of the names of the plugins which are currently active (loaded and running).</description> </key> |