From e862c92eb2d141d2a85f9609a4efa9416ba8fde1 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Tue, 10 Mar 2020 11:33:02 +0100 Subject: [PATCH] Do not change the icon search path Now that we install our icon in the standard icon search path, there is no need to mess with the icon search path; and since 3.36.0 imports.gi.Gtk.IconTheme.get_default() returns null causing TeaTime to no longer works. Removing the unnecessary messing with the icon search path fixes this. Signed-off-by: Hans de Goede --- src/extension.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/extension.js b/src/extension.js index 39c5dbe..0a64a8d 100644 --- a/src/extension.js +++ b/src/extension.js @@ -305,8 +305,6 @@ class TeaTime extends PanelMenu.Button { }); function init(metadata) { - let theme = imports.gi.Gtk.IconTheme.get_default(); - theme.append_search_path(metadata.path); } let _TeaTime;