summaryrefslogtreecommitdiff
path: root/src/downloadstab.h
diff options
context:
space:
mode:
authorJonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com>2025-05-23 09:24:23 +0200
committerGitHub <noreply@github.com>2025-05-23 09:24:23 +0200
commit5d766e94a7a3b3fa861d57d3ad6ae619d98dd5d8 (patch)
treeab91e870302fec6c5ef8b0bbc90cda8e480ec368 /src/downloadstab.h
parenta823d2aa88bd00d10370d5516c4426e8780435f7 (diff)
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 <dudonadrien@gmail.com> Co-authored-by: KenJyn76 <liambonilla@gmail.com> Co-authored-by: Al <26797547+Al12rs@users.noreply.github.com>
Diffstat (limited to 'src/downloadstab.h')
-rw-r--r--src/downloadstab.h7
1 files changed, 7 insertions, 0 deletions
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);
};