diff options
author | TheJackiMonster <thejackimonster@gmail.com> | 2022-08-17 10:37:41 +0200 |
---|---|---|
committer | TheJackiMonster <thejackimonster@gmail.com> | 2022-08-17 10:37:41 +0200 |
commit | 774d4ea84ac0fd216821b6a058555576ab6db6af (patch) | |
tree | c5b3bd4a38acf1fcff29351567b94bca219126b2 | |
parent | 7820508a96d1298134aba9699554c2fa2f347994 (diff) |
Added lobby options in chats ui
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r-- | src/ui/chats.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/chats.c b/src/ui/chats.c index ddeb5d4..1b472a8 100644 --- a/src/ui/chats.c +++ b/src/ui/chats.c @@ -85,7 +85,7 @@ chats_event(UI_CHATS_Handle *chats, chats->line_index = 0; chats->selected = NULL; - int count = 1; + int count = 3; count += GNUNET_CHAT_iterate_groups( app->chat.handle, @@ -258,4 +258,6 @@ chats_print(UI_CHATS_Handle *chats, ); _chats_print_entry(chats, '+', '\0', "Add chat"); + _chats_print_entry(chats, '+', '\0', "Open lobby"); + _chats_print_entry(chats, '+', '\0', "Enter lobby"); } |