4858 """ |
4858 """ |
4859 Private slot to show a mini editor window. |
4859 Private slot to show a mini editor window. |
4860 """ |
4860 """ |
4861 from eric7.QScintilla.MiniEditor import MiniEditor |
4861 from eric7.QScintilla.MiniEditor import MiniEditor |
4862 |
4862 |
4863 editor = MiniEditor(parent=self) |
4863 editor = MiniEditor() |
4864 editor.show() |
4864 editor.show() |
4865 |
4865 |
4866 def addEricActions(self, actions, actionType): |
4866 def addEricActions(self, actions, actionType): |
4867 """ |
4867 """ |
4868 Public method to add actions to the list of actions. |
4868 Public method to add actions to the list of actions. |