From b1f042e50b1d6b83ba1cf3f654d4d3689e5d9a2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sat, 17 Aug 2019 13:52:41 +0200 Subject: [PATCH] [whiteboard] Update button state after chat control connect --- whiteboard/plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/whiteboard/plugin.py b/whiteboard/plugin.py index fb50902..04065dd 100644 --- a/whiteboard/plugin.py +++ b/whiteboard/plugin.py @@ -102,6 +102,7 @@ class WhiteboardPlugin(GajimPlugin): if isinstance(control, chat_control.ChatControl): base = Base(self, control) self.controls.append(base) + self.update_button_state(control) @log_calls('WhiteboardPlugin') def disconnect_from_chat_control(self, chat_control):