Moved dochighlight up one level

This commit is contained in:
Veronica K. B. Olsen
2020-06-01 23:30:58 +02:00
parent 98360b2edd
commit bd3f6d39e7
4 changed files with 1 additions and 10 deletions
-2
View File
@@ -29,7 +29,6 @@ from nw.gui.elements.searchbar import GuiSearchBar
from nw.gui.elements.viewdetails import GuiDocViewDetails from nw.gui.elements.viewdetails import GuiDocViewDetails
# Tools # Tools
from nw.gui.tools.dochighlight import GuiDocHighlighter
__all__ = [ __all__ = [
"GuiBuildNovel", "GuiBuildNovel",
@@ -54,5 +53,4 @@ __all__ = [
"GuiProjectOutline", "GuiProjectOutline",
"GuiSearchBar", "GuiSearchBar",
"GuiDocViewDetails", "GuiDocViewDetails",
"GuiDocHighlighter",
] ]
+1 -1
View File
@@ -41,7 +41,7 @@ from PyQt5.QtGui import (
) )
from nw.core import NWDoc from nw.core import NWDoc
from nw.gui.tools import GuiDocHighlighter from nw.gui.dochighlight import GuiDocHighlighter
from nw.gui.elements.doctitlebar import GuiDocTitleBar from nw.gui.elements.doctitlebar import GuiDocTitleBar
from nw.core import NWSpellSimple, countWords from nw.core import NWSpellSimple, countWords
from nw.constants import nwUnicode, nwDocAction from nw.constants import nwUnicode, nwDocAction
-7
View File
@@ -1,7 +0,0 @@
# -*- coding: utf-8 -*-
from nw.gui.tools.dochighlight import GuiDocHighlighter
__all__ = [
"GuiDocHighlighter",
]