mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
fix new-line character
This commit is contained in:
parent
22546fd9c6
commit
83b7c3d442
1 changed files with 4 additions and 1 deletions
|
|
@ -1119,7 +1119,10 @@ class LogIconFrame(QtWidgets.QFrame):
|
|||
|
||||
class LogItemMessage(QtWidgets.QTextEdit):
|
||||
def __init__(self, msg, parent):
|
||||
super().__init__(msg, parent)
|
||||
super().__init__(parent)
|
||||
|
||||
# Set as plain text to propagate new line characters
|
||||
self.setPlainText(msg)
|
||||
|
||||
self.setObjectName("PublishLogMessage")
|
||||
self.setReadOnly(True)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue