From 86261325ce1aa25cb5919381939677febc94d851 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Tue, 10 Aug 2010 16:59:36 +0100 Subject: [PATCH] Signal the removal of personas from the Kf.PersonaStore --- backends/key-file/kf-persona-store.vala | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backends/key-file/kf-persona-store.vala b/backends/key-file/kf-persona-store.vala index ae8c929..54d81df 100644 --- a/backends/key-file/kf-persona-store.vala +++ b/backends/key-file/kf-persona-store.vala @@ -164,6 +164,11 @@ public class Folks.Backends.Kf.PersonaStore : Folks.PersonaStore { this.key_file.remove_group (persona.display_id); yield this.save_key_file (); + + /* Signal the removal of the Persona */ + GLib.List personas = new GLib.List (); + personas.prepend (persona); + this.personas_changed (null, personas, null, null, 0); } catch (KeyFileError e) { -- 2.7.4