Skip to content

Commit

Permalink
fix multi dbg plugin receive bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutree committed Jan 12, 2024
1 parent c9c30ba commit 87b6931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion COMTool/plugins/dbg.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ class Plugin(Plugin_Base):
receiveUpdateSignal = pyqtSignal(str, list, str) # head, content, encoding
receiveProgressStop = False
receivedData = []
lock = threading.Lock()
sendRecord = []
lastColor = None
lastBg = None
Expand All @@ -74,6 +73,7 @@ class Plugin(Plugin_Base):

def onInit(self, config):
super().onInit(config)
self.lock = threading.Lock()
self.keyControlPressed = False
self.isScheduledSending = False
self.config = config
Expand Down

0 comments on commit 87b6931

Please sign in to comment.