Fixed a few little issues. 6_1_x

Sat, 06 Feb 2016 12:31:51 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 06 Feb 2016 12:31:51 +0100
branch
6_1_x
changeset 4719
cc8bf8ed8720
parent 4708
d0d2f95bd712
child 4721
18bde678a72d

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"/>

eric ide

mercurial