Sat, 06 Feb 2016 12:31:51 +0100
Fixed a few little issues.
(grafted from 9fcb469d81ae3118d4ece81f9790b167045ae99e)
QScintilla/Editor.py | file | annotate | diff | comparison | revisions | |
eric6.e4p | file | annotate | diff | comparison | revisions |
--- a/QScintilla/Editor.py Sun Jan 31 18:42:51 2016 +0100 +++ b/QScintilla/Editor.py Sat Feb 06 12:31:51 2016 +0100 @@ -4992,7 +4992,8 @@ self.menuActs["TypingAidsEnabled"].setChecked( self.completer is not None and self.completer.isEnabled()) - self.menuActs["calltip"].setEnabled(self.acAPI) + if not self.isResourcesFile: + self.menuActs["calltip"].setEnabled(self.acAPI) from .SpellChecker import SpellChecker spellingAvailable = SpellChecker.isAvailable()
--- a/eric6.e4p Sun Jan 31 18:42:51 2016 +0100 +++ b/eric6.e4p Sat Feb 06 12:31:51 2016 +0100 @@ -1886,7 +1886,7 @@ </Vcs> <FiletypeAssociations> <FiletypeAssociation pattern="*.idl" type="INTERFACES"/> - <FiletypeAssociation pattern="*.js" type="__IGNORE__"/> + <FiletypeAssociation pattern="*.js" type="OTHERS"/> <FiletypeAssociation pattern="*.py" type="SOURCES"/> <FiletypeAssociation pattern="*.py3" type="SOURCES"/> <FiletypeAssociation pattern="*.pyw" type="SOURCES"/>