summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/QtUtils/ParallelProgressDialog.h
AgeCommit message (Collapse)Author
2025-06-06DolphinQt: Remove redundant window hintsDentomologist
Remove window hints clearing the flag Qt::WindowContextHelpButtonHint, which is already off by default in Qt 6. In Qt 5 this flag was set by default for QDialogs, and on Windows put a ? button in the corner of the title bar allowing users to activate Qt's QWhatsThis help system for a given widget. Since we don't set that text the ? button was useless and so we hid it manually.
2023-06-12ParallelProgressDialog: Mark WasCanceled() as constLioncash
This doesn't alter any class state.
2023-06-12ParallelProgressDialog: Initialize all data membersLioncash
Ensures we always have a deterministic state.
2022-05-02Add support for building against Qt 6spycrab
2021-12-10ParallelProgressDialog: Add missing license commentPokechu22
2020-10-19Qt/QtUtils: Fix accidental recursion in ParallelProgressDialogLéo Lam
Seems to be a typo.
2020-07-09DolphinQt: Attempt to fix ParallelProgressDialog constantly reopeningJosJuice
I believe the value returned by value() resets when we call setValue() with the maximum (due to auto-reset). I have been unable to test this because I can't reproduce the issue, which is described at https://bugs.dolphin-emu.org/issues/12158#note-9.
2020-07-08DolphinQt: Replace QTBUG-10561 workaround with better workaroundJosJuice
This workaround is not timing sensitive, unlike the old one. Hopefully fixes https://bugs.dolphin-emu.org/issues/12158 and https://bugs.dolphin-emu.org/issues/12180.
2020-04-03DolphinQt: Run tasks that use progress dialogs on separate threadsJosJuice