feat(ui): improve info dialog before updating an instance

Adds a 'Cancel' option, and add a note about doing a backup before
updating.

Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
flow
2022-07-31 20:29:12 -03:00
parent 68facd6b93
commit eda6cf11ef
6 changed files with 50 additions and 20 deletions

View File

@ -36,6 +36,9 @@ class InstanceCreationTask : public InstanceTask {
protected:
void setError(QString message) { m_error_message = message; };
protected:
bool m_abort = false;
private:
QString m_error_message;
};