diff options
author | Jonas Danielsson <jonas@threetimestwo.org> | 2015-08-16 20:06:38 +0200 |
---|---|---|
committer | Jonas Danielsson <jonas@threetimestwo.org> | 2015-08-16 21:16:40 +0200 |
commit | 5ed45f5328a4fb6a929f623eef35c6c64f10db67 (patch) | |
tree | f9512143f2b8ca01fdcfab9c8e685572636d5224 | |
parent | 61b23dee8c708d0a2a59375dac4fb08d7b0ce301 (diff) | |
download | gnome-maps-5ed45f5328a4fb6a929f623eef35c6c64f10db67.tar.gz |
application: Append our theme path earlierwip/jonasdn/storedRoute
-rw-r--r-- | src/application.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application.js b/src/application.js index 375633f6..1903336b 100644 --- a/src/application.js +++ b/src/application.js @@ -187,6 +187,8 @@ const Application = new Lang.Class({ } }); + Gtk.IconTheme.get_default().append_search_path(GLib.build_filenamev([pkg.pkgdatadir, + 'icons'])); this._initPlaceStore(); this._initAppMenu(); }, @@ -208,8 +210,6 @@ const Application = new Lang.Class({ if (this._mainWindow) return; - Gtk.IconTheme.get_default().append_search_path(GLib.build_filenamev([pkg.pkgdatadir, - 'icons'])); let overlay = new Gtk.Overlay({ visible: true, can_focus: false }); notificationManager = new NotificationManager.NotificationManager(overlay); this._mainWindow = new MainWindow.MainWindow({ application: this, |