QScintilla/Shell.py

branch
Py2 comp.
changeset 3080
6c0a430b19df
parent 3060
5883ce99ee12
parent 3068
e2650fb5db4e
child 3142
55030c09e142
equal deleted inserted replaced
3079:0233bbe9a9c4 3080:6c0a430b19df
403 self.setSelectionForegroundColor( 403 self.setSelectionForegroundColor(
404 QApplication.palette().color(QPalette.HighlightedText)) 404 QApplication.palette().color(QPalette.HighlightedText))
405 self.setSelectionToEol(Preferences.getEditor("ExtendSelectionToEol")) 405 self.setSelectionToEol(Preferences.getEditor("ExtendSelectionToEol"))
406 self.setCaretForegroundColor( 406 self.setCaretForegroundColor(
407 Preferences.getEditorColour("CaretForeground")) 407 Preferences.getEditorColour("CaretForeground"))
408 self.setCaretLineBackgroundColor( 408 self.setCaretLineVisible(False)
409 Preferences.getEditorColour("CaretLineBackground"))
410 self.setCaretLineVisible(Preferences.getEditor("CaretLineVisible"))
411 self.caretWidth = Preferences.getEditor("CaretWidth") 409 self.caretWidth = Preferences.getEditor("CaretWidth")
412 self.setCaretWidth(self.caretWidth) 410 self.setCaretWidth(self.caretWidth)
413 if Preferences.getShell("WrapEnabled"): 411 if Preferences.getShell("WrapEnabled"):
414 self.setWrapMode(QsciScintilla.WrapWord) 412 self.setWrapMode(QsciScintilla.WrapWord)
415 else: 413 else:

eric ide

mercurial