[gnome-shell/wip/hadess/PrefersNonDefaultGPU: 10/13] shell/global: Notify when switcheroo-control prop changes
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/hadess/PrefersNonDefaultGPU: 10/13] shell/global: Notify when switcheroo-control prop changes
- Date: Mon, 4 May 2020 14:29:16 +0000 (UTC)
commit b17017679b084135e34699386212a2f02528ff10
Author: Bastien Nocera <hadess hadess net>
Date: Tue Apr 28 17:36:48 2020 +0200
shell/global: Notify when switcheroo-control prop changes
https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1226
src/shell-global.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
---
diff --git a/src/shell-global.c b/src/shell-global.c
index 2390c711e4..89f163ff46 100644
--- a/src/shell-global.c
+++ b/src/shell-global.c
@@ -148,6 +148,7 @@ got_switcheroo_control_gpus_property_cb (GObject *source_object,
global = user_data;
g_dbus_proxy_set_cached_property (global->switcheroo_control, "GPUs", gpus);
+ g_object_notify (G_OBJECT (global), "switcheroo-control");
}
static void
@@ -175,7 +176,11 @@ switcheroo_control_ready_cb (GObject *source_object,
cached_props = g_dbus_proxy_get_cached_property_names (global->switcheroo_control);
if (cached_props != NULL && g_strv_contains ((const gchar * const *) cached_props, "GPUs"))
- return;
+ {
+ g_object_notify (G_OBJECT (global), "switcheroo-control");
+ return;
+ }
+ /* Delay property notification until we have all the properties gathered */
g_dbus_connection_call (g_dbus_proxy_get_connection (global->switcheroo_control),
g_dbus_proxy_get_name (global->switcheroo_control),
@@ -326,6 +331,7 @@ switcheroo_vanished_cb (GDBusConnection *connection,
g_debug ("switcheroo-control vanished");
g_clear_object (&global->switcheroo_control);
+ g_object_notify (G_OBJECT (global), "switcheroo-control");
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]