673 |
673 |
674 def getCaretLineAlwaysVisible(self): |
674 def getCaretLineAlwaysVisible(self): |
675 """ |
675 """ |
676 Public method to determine, if the caret line is visible even if |
676 Public method to determine, if the caret line is visible even if |
677 the editor doesn't have the focus. |
677 the editor doesn't have the focus. |
|
678 |
|
679 @return flag indicating an always visible caret line (boolean) |
678 """ |
680 """ |
679 try: |
681 try: |
680 return self.SendScintilla( |
682 return self.SendScintilla( |
681 QsciScintilla.SCI_GETCARETLINEVISIBLEALWAYS) |
683 QsciScintilla.SCI_GETCARETLINEVISIBLEALWAYS) |
682 except AttributeError: |
684 except AttributeError: |