From: David Herrmann Date: Tue, 1 Oct 2013 15:58:58 +0000 (+0200) Subject: logind: send PropertyChanged during deactivation X-Git-Tag: v208~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=dfd552707d43087a1e0079cdae9f5290e14b78e9;hp=c2e5d024a380bae6ead301fb4f40787b372ec3e0 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. --- 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);