Comment # 3 on bug 1116778 from
I forgot to mention that I applied this patch for my latest test:

commit 4054d01dda245b62cf86d84b70841d00cd5a6a5c
Author: kozec <kozec@kozec.com>
Date:   Mon Jun 19 00:23:43 2017 +0200

    Fix: Crashing on openSUSE KDE. Fixes #209

diff --git a/scripts/sc-controller b/scripts/sc-controller
index 1a11619..494e089 100755
--- a/scripts/sc-controller
+++ b/scripts/sc-controller
@@ -20,7 +20,8 @@ if __name__ == "__main__":
        from gi.repository import Gtk, GObject
        glades = os.path.join(get_share_path(), "glade")
        images = os.path.join(get_share_path(), "images")
-       Gtk.IconTheme.get_default().append_search_path(images)
+       if Gtk.IconTheme.get_default():
+               Gtk.IconTheme.get_default().append_search_path(images)
        GObject.threads_init()

        from scc.gui.app import App


You are receiving this mail because: