diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2025-01-05 10:46:02 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2025-01-05 10:46:02 -0300 |
commit | e371f36187328e23a33046a3420cd1df55f424b5 (patch) | |
tree | 0324b9501170a5f6fba5a2fc82a1dca88e06aafe | |
parent | 843a1bb43e70ab041524dbc696ed37246a6b2b79 (diff) | |
download | finder-e371f36187328e23a33046a3420cd1df55f424b5.tar.gz finder-e371f36187328e23a33046a3420cd1df55f424b5.tar.bz2 |
Fix: do not refresh the list after an item is processedmain
-rw-r--r-- | packages/finder/main.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/finder/main.py b/packages/finder/main.py index 9396201..fff1677 100644 --- a/packages/finder/main.py +++ b/packages/finder/main.py @@ -97,7 +97,6 @@ class FinderMain(): # Make sure to "invalidate" the app after the callback returned, to # ensure the UI is refreshed. self.app.invalidate() - refresh = asyncio.create_task(self.refresh()) def open(self, option = 1): self.process_item(self.opener.open, option) |