From 5cc544f30fba5b011c765092a8a87d6ce77543a7 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Fri, 9 Aug 2013 17:04:31 +0200 Subject: fix systemd-login1 support for gpm_manager_blank_screen --- src/gpm-backlight.c | 10 +++++----- src/gpm-manager.c | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/gpm-backlight.c b/src/gpm-backlight.c index c2d58e2..8e20400 100644 --- a/src/gpm-backlight.c +++ b/src/gpm-backlight.c @@ -66,7 +66,7 @@ struct GpmBacklightPrivate GpmControl *control; GpmDpms *dpms; GpmIdle *idle; - EggConsoleKit *consolekit; + EggConsoleKit *console; gboolean can_dim; gboolean system_is_idle; GTimer *idle_timer; @@ -554,8 +554,8 @@ idle_changed_cb (GpmIdle *idle, GpmIdleMode mode, GpmBacklight *backlight) if (gpm_button_is_lid_closed (backlight->priv->button)) return; - /* don't dim or undim the screen unless we are on the active console */ - if (!egg_console_kit_is_active (backlight->priv->consolekit)) { + /* don't dim or undim the screen unless ConsoleKit/systemd say we are on the active console */ + if (!LOGIND_RUNNING() && !egg_console_kit_is_active (backlight->priv->console)) { egg_debug ("ignoring as not on active console"); return; } @@ -677,7 +677,7 @@ gpm_backlight_finalize (GObject *object) g_object_unref (backlight->priv->button); g_object_unref (backlight->priv->idle); g_object_unref (backlight->priv->brightness); - g_object_unref (backlight->priv->consolekit); + g_object_unref (backlight->priv->console); g_return_if_fail (backlight->priv != NULL); G_OBJECT_CLASS (gpm_backlight_parent_class)->finalize (object); @@ -772,7 +772,7 @@ gpm_backlight_init (GpmBacklight *backlight) G_CALLBACK (control_resume_cb), backlight); /* Don't do dimming on inactive console */ - backlight->priv->consolekit = egg_console_kit_new (); + backlight->priv->console = egg_console_kit_new (); /* sync at startup */ gpm_backlight_brightness_evaluate_and_set (backlight, FALSE, TRUE); diff --git a/src/gpm-manager.c b/src/gpm-manager.c index aeb5a31..5cff047 100644 --- a/src/gpm-manager.c +++ b/src/gpm-manager.c @@ -775,8 +775,8 @@ gpm_manager_idle_do_sleep (GpmManager *manager) static void gpm_manager_idle_changed_cb (GpmIdle *idle, GpmIdleMode mode, GpmManager *manager) { - /* ConsoleKit says we are not on active console */ - if (!egg_console_kit_is_active (manager->priv->console)) { + /* ConsoleKit/systemd say we are not on active console */ + if (!LOGIND_RUNNING() && !egg_console_kit_is_active (manager->priv->console)) { egg_debug ("ignoring as not on active console"); return; } @@ -1005,7 +1005,7 @@ gpm_manager_client_changed_cb (UpClient *client, GpmManager *manager) manager->priv->on_battery = on_battery; /* ConsoleKit says we are not on active console */ - if (!egg_console_kit_is_active (manager->priv->console)) { + if (!LOGIND_RUNNING() && !egg_console_kit_is_active (manager->priv->console)) { egg_debug ("ignoring as not on active console"); return; } -- cgit v1.2.1 From 93b2cd78da14035d052275b91f2a827bb08ebea8 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Fri, 9 Aug 2013 17:09:57 +0200 Subject: fix comment in gpm-manager.c --- src/gpm-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpm-manager.c b/src/gpm-manager.c index 5cff047..7561b22 100644 --- a/src/gpm-manager.c +++ b/src/gpm-manager.c @@ -1004,7 +1004,7 @@ gpm_manager_client_changed_cb (UpClient *client, GpmManager *manager) /* save in local cache */ manager->priv->on_battery = on_battery; - /* ConsoleKit says we are not on active console */ + /* ConsoleKit/systemd say we are not on active console */ if (!LOGIND_RUNNING() && !egg_console_kit_is_active (manager->priv->console)) { egg_debug ("ignoring as not on active console"); return; -- cgit v1.2.1