summaryrefslogtreecommitdiff
path: root/handle.c
diff options
context:
space:
mode:
authorJune McEnroe2022-02-19 18:28:45 -0500
committerJune McEnroe2022-02-19 18:28:45 -0500
commit3359a5d69b0fe3c08812f7db83e27958ffec820f (patch)
treef3a358df92531a55880e0d5c793b6ed963e76920 /handle.c
parent70f627bc47e944a63f32fcf60db73913845772c6 (diff)
Factor out window management to window.c
Diffstat (limited to 'handle.c')
-rw-r--r--handle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/handle.c b/handle.c
index d663ca1..f4cf68e 100644
--- a/handle.c
+++ b/handle.c
@@ -343,7 +343,7 @@ static void handleJoin(struct Message *msg) {
idColors[id] = hash(msg->params[0]);
completeTouch(None, msg->params[0], idColors[id]);
if (replies[ReplyJoin]) {
- uiShowID(id);
+ windowShow(windowFor(id));
replies[ReplyJoin]--;
}
}