fix: tab layout, clear search state, and cleanup

UI: remove trackertable from the Search tab and reorder widgets to correct layout. Tab helper: add QLayout directly instead of wrapping it in a temporary QWidget to avoid extra nesting. Search helper: clear the trackertable rows and reset state.posts when starting a new search to ensure fresh results. Minor: import check_space in main and simplify an unused loop variable in libtorrent_int for clarity/linting.
This commit is contained in:
Vxrtrauter
2026-03-21 02:48:48 +01:00
parent 290388a7dc
commit 77c2e9cd9e
5 changed files with 6 additions and 5 deletions
+2
View File
@@ -6,6 +6,7 @@ for scraper in SCRAPERS:
state.trackers[scraper.name] = scraper
def run_search(self) -> None:
state.trackertable.setRowCount(0)
self.show_empty_results(False)
search_text = self.searchbar.text()
@@ -14,6 +15,7 @@ def run_search(self) -> None:
consoleLog("Error: Can't search for nothing")
return
state.posts = []
self.searchbar.setEnabled(False)
consoleLog(f"User searched for: {search_text}")