From 5d766e94a7a3b3fa861d57d3ad6ae619d98dd5d8 Mon Sep 17 00:00:00 2001 From: Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> Date: Fri, 23 May 2025 09:24:23 +0200 Subject: Mass Metadata Parsing: Prevent re-querying and manual prompts to enter missing data (#2135) * Add a button to "Query Info" of every download in the list --------- Co-authored-by: Deewens Co-authored-by: KenJyn76 Co-authored-by: Al <26797547+Al12rs@users.noreply.github.com> --- src/downloadstab.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/downloadstab.h') diff --git a/src/downloadstab.h b/src/downloadstab.h index f0b85d91..1676ec76 100644 --- a/src/downloadstab.h +++ b/src/downloadstab.h @@ -23,6 +23,7 @@ private: struct DownloadsTabUi { QPushButton* refresh; + QPushButton* queryInfos; DownloadListView* list; QCheckBox* showHidden; QLineEdit* filter; @@ -33,6 +34,12 @@ private: MOBase::FilterWidget m_filter; void refresh(); + + /** + * @brief Handle click on the "Query infos" button + **/ + void queryInfos(); + void resumeDownload(int downloadIndex); }; -- cgit v1.3.1