Add test coverage and fix a few minor things

This commit is contained in:
Veronica Berglyd Olsen
2023-08-31 16:38:51 +02:00
parent 94329b334a
commit d7c8f97d47
5 changed files with 73 additions and 6 deletions
+2 -2
View File
@@ -180,8 +180,8 @@ class GuiDocEditor(QTextEdit):
self.wCounterSel.signals.countsReady.connect(self._updateSelCounts)
# Install Event Filter for Mouse Wheel
self.wheelEventForwarder = WheelEventFilter(self)
self.installEventFilter(self.wheelEventForwarder)
self.wheelEventFilter = WheelEventFilter(self)
self.installEventFilter(self.wheelEventFilter)
# Finalise
self.updateSyntaxColours()