mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
added monospace font to editor
This commit is contained in:
parent
aefe81d665
commit
dd3be3cd33
2 changed files with 3 additions and 1 deletions
|
|
@ -74,6 +74,8 @@ class PythonCodeEditor(QtWidgets.QPlainTextEdit):
|
||||||
def __init__(self, parent):
|
def __init__(self, parent):
|
||||||
super(PythonCodeEditor, self).__init__(parent)
|
super(PythonCodeEditor, self).__init__(parent)
|
||||||
|
|
||||||
|
self.setObjectName("PythonCodeEditor")
|
||||||
|
|
||||||
self._indent = 4
|
self._indent = 4
|
||||||
|
|
||||||
def _tab_shift_right(self):
|
def _tab_shift_right(self):
|
||||||
|
|
|
||||||
|
|
@ -625,6 +625,6 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Python console interpreter */
|
/* Python console interpreter */
|
||||||
#PythonInterpreterOutput {
|
#PythonInterpreterOutput, #PythonCodeEditor {
|
||||||
font-family: "Roboto Mono";
|
font-family: "Roboto Mono";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue