Showing with 3 additions and 0 deletions.
  1. +3 −0 python/console_sci.py
3 changes: 3 additions & 0 deletions python/console_sci.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ def __init__(self, parent=None):
super(PythonEdit,self).__init__(parent)
code.InteractiveInterpreter.__init__(self, locals=None)

# Enable non-ascii chars for editor
self.setUtf8(True)

self.new_input_line = True

self.setMarginWidth(0, 0)
Expand Down