[polari/wip/fmuellner/window-experiments: 27/32] roomStack: Pick up list of existing rooms
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [polari/wip/fmuellner/window-experiments: 27/32] roomStack: Pick up list of existing rooms
- Date: Tue, 19 Jul 2016 16:52:08 +0000 (UTC)
commit a0823717077e43540da164e4002a993ad3bf2e06
Author: Florian Müllner <fmuellner gnome org>
Date: Fri Jul 15 00:12:18 2016 +0200
roomStack: Pick up list of existing rooms
We currently only monitor rooms neing added or removed, but don't
pick up rooms that already existed when the room stack is constructed.
src/roomStack.js | 18 +++++++++++-------
1 files changed, 11 insertions(+), 7 deletions(-)
---
diff --git a/src/roomStack.js b/src/roomStack.js
index 6ede912..2321d82 100644
--- a/src/roomStack.js
+++ b/src/roomStack.js
@@ -26,13 +26,6 @@ const RoomStack = new Lang.Class({
this._sizeGroup = new Gtk.SizeGroup({ mode: Gtk.SizeGroupMode.VERTICAL });
this._rooms = new Map();
- this._roomManager = ChatroomManager.getDefault();
-
- this._roomManager.connect('room-added',
- Lang.bind(this, this._roomAdded));
- this._roomManager.connect('room-removed',
- Lang.bind(this, this._roomRemoved));
-
this.add_named(new ChatPlaceholder(this._sizeGroup), 'placeholder');
this._entryAreaHeight = 0;
@@ -41,6 +34,17 @@ const RoomStack = new Lang.Class({
this._entryAreaHeight = rect.height - 1;
this.notify('entry-area-height');
}));
+
+ this._roomManager = ChatroomManager.getDefault();
+
+ this._roomManager.connect('room-added',
+ Lang.bind(this, this._roomAdded));
+ this._roomManager.connect('room-removed',
+ Lang.bind(this, this._roomRemoved));
+
+ this._roomManager.forEachRoom(room => {
+ this._roomAdded(this._roomManager, room);
+ });
},
vfunc_realize: function() {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]