[gnome-tweak-tool] appearance: Stop requiring gtk2 version of theme



commit 8815013c5eee812fd416a7a511c8a7086d5dce06
Author: Jeremy Bicha <jbicha ubuntu com>
Date:   Fri Nov 3 13:40:47 2017 -0400

    appearance: Stop requiring gtk2 version of theme
    
    Since it's easily possible to not use gtk2 apps any more

 gtweak/tweaks/tweak_group_appearance.py |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)
---
diff --git a/gtweak/tweaks/tweak_group_appearance.py b/gtweak/tweaks/tweak_group_appearance.py
index 7380c47..ee12b75 100644
--- a/gtweak/tweaks/tweak_group_appearance.py
+++ b/gtweak/tweaks/tweak_group_appearance.py
@@ -45,17 +45,13 @@ class GtkThemeSwitcher(GSettingsComboTweak):
             **options)
 
     def _get_valid_themes(self):
-        """ Only shows themes that have variations for gtk+-3 and gtk+-2 """
-        gtk_ver = Gtk.MINOR_VERSION
-        if gtk_ver % 2: # Want even number
-            gtk_ver += 1
+        """ Only shows themes that have variations for gtk3"""
 
         dirs = ( os.path.join(gtweak.DATA_DIR, "themes"),
                  os.path.join(GLib.get_user_data_dir(), "themes"),
                  os.path.join(os.path.expanduser("~"), ".themes"))
         valid = walk_directories(dirs, lambda d:
-                    os.path.exists(os.path.join(d, "gtk-2.0")) and \
-                        (os.path.exists(os.path.join(d, "gtk-3.0")) or \
+                    os.path.exists(os.path.join(d, "gtk-3.0")) or \
                          os.path.exists(os.path.join(d, "gtk-3.{}".format(gtk_ver)))))
 
         if 'Adwaita' not in valid:


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