messenger-gtk

Gtk+3 graphical user interfaces for GNUnet Messenger
Log | Files | Refs | Submodules | README | LICENSE

commit bfd57e85196080bb73fd21416888b972cbf44e3b
parent 6dd7462bd3e611449a64162ae9e8a4e58bce28a3
Author: Jacki <jacki@thejackimonster.de>
Date:   Fri,  9 Aug 2024 02:06:56 +0200

Reset mute and camera stream state on stopping call

Signed-off-by: Jacki <jacki@thejackimonster.de>

Diffstat:
Msrc/ui/discourse.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/ui/discourse.c b/src/ui/discourse.c @@ -199,6 +199,9 @@ handle_call_stop_button_click(UNUSED GtkButton *button, handle->video_discourse = NULL; } + handle->muted = TRUE; + handle->stream_camera = FALSE; + _update_call_button(handle); application_chat_unlock(handle->app); }