From dfd552707d43087a1e0079cdae9f5290e14b78e9 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Tue, 1 Oct 2013 17:58:58 +0200 Subject: [PATCH] logind: send PropertyChanged during deactivation We only send the PropertyChanged signal for the to-be-activated session but not for the to-be-deactivated one. Fix that so both listeners get notified about the new state. --- src/login/logind-seat.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/login/logind-seat.c b/src/login/logind-seat.c index 4a4d40adc..feebcf455 100644 --- a/src/login/logind-seat.c +++ b/src/login/logind-seat.c @@ -246,8 +246,10 @@ int seat_set_active(Seat *s, Session *session) { old_active = s->active; s->active = session; - if (old_active) + if (old_active) { session_device_pause_all(old_active); + session_send_changed(old_active, "Active\0"); + } seat_apply_acls(s, old_active); -- 2.30.2