[gnome-shell] perf: Stop using GTK



commit 4541fb9819dc5c88b18a4cbecc4a46a1c8aa5bd0
Author: Florian Müllner <fmuellner gnome org>
Date:   Thu Apr 4 15:45:01 2019 +0200

    perf: Stop using GTK
    
    Instead of going through GtkSettings, we can just as well use the
    underlying GSettings directly.
    
    https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/481

 js/perf/hwtest.js | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/js/perf/hwtest.js b/js/perf/hwtest.js
index 31a25a715..661f2ef9a 100644
--- a/js/perf/hwtest.js
+++ b/js/perf/hwtest.js
@@ -1,4 +1,4 @@
-const { Clutter, Gio, Gtk, Shell } = imports.gi;
+const { Clutter, Gio, Shell } = imports.gi;
 const Main = imports.ui.main;
 const Scripting = imports.ui.scripting;
 
@@ -104,7 +104,10 @@ function *run() {
     yield Scripting.waitLeisure();
     Scripting.scriptEvent('desktopShown');
 
-    Gtk.Settings.get_default().gtk_enable_animations = false;
+    let interfaceSettings = new Gio.Settings({
+        schema_id: 'org.gnome.desktop.interface'
+    });
+    interfaceSettings.set_boolean('enable-animations', false);
 
     Scripting.scriptEvent('overviewShowStart');
     Main.overview.show();
@@ -200,7 +203,7 @@ function *run() {
 
     yield Scripting.sleep(1000);
 
-    Gtk.Settings.get_default().gtk_enable_animations = true;
+    interfaceSettings.set_boolean('enable-animations', true);
 }
 
 let overviewShowStart;


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