[gnome-shell] placeDisplay: use new bookmark file location



commit b9f0158278627040ac4060ec974d583657f635ed
Author: Matthias Clasen <mclasen redhat com>
Date:   Sat May 5 15:34:34 2012 -0400

    placeDisplay: use new bookmark file location
    
    GTK+ 3.5 is placing the bookmarks file in
    $XDG_CONFIG_HOME/gtk-3.0/bookmarks. Adapt to that change.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675443

 js/ui/placeDisplay.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/placeDisplay.js b/js/ui/placeDisplay.js
index 9c1352c..8441282 100644
--- a/js/ui/placeDisplay.js
+++ b/js/ui/placeDisplay.js
@@ -189,7 +189,7 @@ const PlacesManager = new Lang.Class({
         this._volumeMonitor.connect('drive-changed', Lang.bind(this, this._updateDevices));
         this._updateDevices();
 
-        this._bookmarksPath = GLib.build_filenamev([GLib.get_home_dir(), '.gtk-bookmarks']);
+        this._bookmarksPath = GLib.build_filenamev([GLib.get_user_config_dir(), 'gtk-3.0', 'bookmarks']);
         this._bookmarksFile = Gio.file_new_for_path(this._bookmarksPath);
         this._monitor = this._bookmarksFile.monitor_file(Gio.FileMonitorFlags.NONE, null);
         this._bookmarkTimeoutId = 0;



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