mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-04 20:36:58 +03:00
fix: issue with status of non-sequencial tasks
This commit is contained in:
parent
c3f1c13a31
commit
be2512bb4b
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ class Task : public QObject {
|
|||
virtual bool canAbort() const { return false; }
|
||||
|
||||
QString getStatus() { return m_status; }
|
||||
virtual auto getStepStatus() const -> QString { return {}; }
|
||||
virtual auto getStepStatus() const -> QString { return m_status; }
|
||||
|
||||
qint64 getProgress() { return m_progress; }
|
||||
qint64 getTotalProgress() { return m_progressTotal; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue