Browse Source

Fix a qt signal, fixing runtime

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-alpha2
falkTX 6 years ago
parent
commit
17121e68b2
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/frontend/carla_host.py

+ 1
- 1
source/frontend/carla_host.py View File

@@ -2153,7 +2153,7 @@ class HostWindow(QMainWindow):
def fixLogText(self, text):
return text.replace("\x1b[30;1m", "").replace("\x1b[31m", "").replace("\x1b[0m", "")

@pyqtSlot(int, int, int, float, str)
@pyqtSlot(int, int, int, int, float, str)
def slot_handleDebugCallback(self, pluginId, value1, value2, value3, valuef, valueStr):
self.ui.text_logs.appendPlainText(self.fixLogText(valueStr))



Loading…
Cancel
Save