Disable line wrapping in debug console.
For some reason this does not fix #144.
This commit is contained in:
parent
0a6a8b4b4a
commit
179d108071
@ -157,6 +157,7 @@ class ConsoleTextEdit(QTextEdit):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
self.setAcceptRichText(False)
|
||||
self.setLineWrapMode(QTextEdit.NoWrap)
|
||||
self.setReadOnly(True)
|
||||
config.on_change(self.update_font, 'fonts', 'debug-console')
|
||||
self.update_font()
|
||||
|
Loading…
Reference in New Issue
Block a user