[whiteboard] Remove not used Base objects

This commit is contained in:
Philipp Hörist
2019-08-17 13:53:19 +02:00
parent b1f042e50b
commit 5c692c1e01

View File

@@ -99,6 +99,10 @@ class WhiteboardPlugin(GajimPlugin):
@log_calls('WhiteboardPlugin')
def connect_with_chat_control(self, control):
for base in self.controls:
if base.chat_control == control:
self.controls.remove(base)
if isinstance(control, chat_control.ChatControl):
base = Base(self, control)
self.controls.append(base)