Edit book: Fix the next/previous buttons in the Text search tool not working

This commit is contained in:
Kovid Goyal 2025-07-13 12:22:50 +05:30
parent 5ee36ba214
commit 764ce83290
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -115,6 +115,7 @@ class TextSearch(QWidget):
b.setIcon(QIcon.ic('arrow-down.png')), b.setText(_('&Next'))
b.setToolTip(_('Find next match'))
h.addWidget(b)
connect_lambda(b.clicked, self, lambda self: self.do_search())
self.prev_button = b = QToolButton(self)
b.setIcon(QIcon.ic('arrow-up.png')), b.setText(_('&Previous'))
b.setToolTip(_('Find previous match'))