Thu, 05 Sep 2024 17:07:25 +0200
Fixed a little glitch in the find & replace pane causing the cursor of the replace text box to be solid instead of blinking.
src/eric7/QScintilla/SearchReplaceWidget.py | file | annotate | diff | comparison | revisions |
--- a/src/eric7/QScintilla/SearchReplaceWidget.py Thu Sep 05 16:47:03 2024 +0200 +++ b/src/eric7/QScintilla/SearchReplaceWidget.py Thu Sep 05 17:07:25 2024 +0200 @@ -284,7 +284,6 @@ if not bool(self.replacetextCombo.currentText()): self.replacetextCombo.setCurrentText(self.findtextCombo.currentText()) self.replacetextCombo.lineEdit().selectAll() - return True return super().eventFilter(obj, evt)