Merge line highlight with existing signal handler for cursor move

This commit is contained in:
Veronica Berglyd Olsen
2025-06-14 17:30:30 +02:00
parent 6d04c88d83
commit cbc79d7082
+5 -13
View File
@@ -234,9 +234,6 @@ class GuiDocEditor(QPlainTextEdit):
self.updateSyntaxColors() self.updateSyntaxColors()
self.initEditor() self.initEditor()
# Connect Additional Signal
self.cursorPositionChanged.connect(self._highlightCurrentLine)
logger.debug("Ready: GuiDocEditor") logger.debug("Ready: GuiDocEditor")
return return
@@ -383,7 +380,7 @@ class GuiDocEditor(QPlainTextEdit):
self.setTabStopDistance(CONFIG.tabWidth) self.setTabStopDistance(CONFIG.tabWidth)
self.setCursorWidth(CONFIG.cursorWidth) self.setCursorWidth(CONFIG.cursorWidth)
self.setExtraSelections([]) self.setExtraSelections([])
self._highlightCurrentLine() self._cursorMoved()
# If we have a document open, we should refresh it in case the # If we have a document open, we should refresh it in case the
# font changed, otherwise we just clear the editor entirely, # font changed, otherwise we just clear the editor entirely,
@@ -1122,6 +1119,10 @@ class GuiDocEditor(QPlainTextEdit):
def _cursorMoved(self) -> None: def _cursorMoved(self) -> None:
"""Triggered when the cursor moved in the editor.""" """Triggered when the cursor moved in the editor."""
self.docFooter.updateLineCount(self.textCursor()) self.docFooter.updateLineCount(self.textCursor())
if CONFIG.lineHighlight:
self._selection.cursor = self.textCursor()
self._selection.cursor.clearSelection()
self.setExtraSelections([self._selection])
return return
@pyqtSlot(int, int, str) @pyqtSlot(int, int, str)
@@ -1313,15 +1314,6 @@ class GuiDocEditor(QPlainTextEdit):
CONFIG.showEditToolBar = state CONFIG.showEditToolBar = state
return return
@pyqtSlot()
def _highlightCurrentLine(self) -> None:
"""Highlight the cursor line if setting is enabled."""
if CONFIG.lineHighlight:
self._selection.cursor = self.textCursor()
self._selection.cursor.clearSelection()
self.setExtraSelections([self._selection])
return
## ##
# Search & Replace # Search & Replace
## ##