From 4801bcf7a16f8a6c2c7b7ba9e11eb46cc0c03095 Mon Sep 17 00:00:00 2001 From: Christian Moser Date: Tue, 25 Feb 2025 22:25:05 +0100 Subject: [PATCH] removed debug output from GameView --- sgbackup/gui/_app.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sgbackup/gui/_app.py b/sgbackup/gui/_app.py index ac47a6a..fdc0593 100644 --- a/sgbackup/gui/_app.py +++ b/sgbackup/gui/_app.py @@ -394,9 +394,7 @@ class GameView(Gtk.Box): for name,match,pos in result: - item = self._liststore.get_item(pos) - item.fuzzy_match = match - print("\"{}\" | \"{}\"".format(name,item.name),match,pos) + self._liststore.get_item(pos).fuzzy_match = match print("-"*80) self.__filter_model.set_filter(GameViewMatchFilter())