Sat, 21 Jan 2012 15:01:53 +0100
Fixed the issue where a non matching background was shown in the editor for lines below the end of the text, if a lexer with a non-standard background was set.
Added capability to change the colours of the edit area independant from the colours of the system style.
# -*- coding: utf-8 -*- # Copyright (c) 2011 - 2012 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module to check for the presence of PySide by importing it. """ import sys if __name__ == "__main__": try: import PySide # __IGNORE_EXCEPTION__ __IGNORE_WARNING__ ret = 0 except ImportError: ret = 1 sys.exit(ret) # # eflag: FileType = Python2