aboutsummaryrefslogtreecommitdiff
path: root/src/ui/chats.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/chats.c')
-rw-r--r--src/ui/chats.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/chats.c b/src/ui/chats.c
index c2cc2ae..55e08df 100644
--- a/src/ui/chats.c
+++ b/src/ui/chats.c
@@ -191,17 +191,17 @@ chats_print(UI_CHATS_Handle *chats,
191{ 191{
192 if (chats->open_dialog.window) 192 if (chats->open_dialog.window)
193 { 193 {
194 chat_open_dialog_print(&(chats->open_dialog), app); 194 chat_open_dialog_print(&(chats->open_dialog));
195 return; 195 return;
196 } 196 }
197 else if (chats->create_dialog.win) 197 else if (chats->create_dialog.win)
198 { 198 {
199 lobby_create_dialog_print(&(chats->create_dialog), app); 199 lobby_create_dialog_print(&(chats->create_dialog));
200 return; 200 return;
201 } 201 }
202 else if (chats->enter_dialog.window) 202 else if (chats->enter_dialog.window)
203 { 203 {
204 lobby_enter_dialog_print(&(chats->enter_dialog), app); 204 lobby_enter_dialog_print(&(chats->enter_dialog));
205 return; 205 return;
206 } 206 }
207 207