[3350][GTK] Fix a regression with quick search

When one tries to search in the TorrentView, then a little search window
appears but does nothing.

Ref: https://lazka.github.io/pgi-docs/Gtk-3.0/callbacks.html#Gtk.TreeViewSearchEqualFunc
Closes: https://dev.deluge-torrent.org/ticket/3350
Closes: https://github.com/deluge-torrent/deluge/pull/467
This commit is contained in:
DjLegolas 2024-09-20 11:48:35 +03:00 committed by Calum Lind
parent 0e197ee07e
commit ee33c0c5bb
No known key found for this signature in database
GPG key ID: 90597A687B836BA3

View file

@ -782,7 +782,7 @@ class ListView:
return True
def on_keypress_search_by_name(self, model, column, key, _iter):
def on_keypress_search_by_name(self, model, column, key, _iter, *search_data):
torrent_name_col = self.columns[_('Name')].column_indices[1]
return not model[_iter][torrent_name_col].lower().startswith(key.lower())