chore(rename): fix unfinshed renames from deshadow changes
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
parent
b9fe37aec1
commit
7091bc81c2
@ -209,7 +209,7 @@ void ExportInstanceDialog::savePackIgnore()
|
|||||||
auto ignoreData = proxyModel->blockedPaths().toStringList().join('\n').toUtf8();
|
auto ignoreData = proxyModel->blockedPaths().toStringList().join('\n').toUtf8();
|
||||||
auto filename = ignoreFileName();
|
auto filename = ignoreFileName();
|
||||||
try {
|
try {
|
||||||
FS::write(filename, data);
|
FS::write(filename, ignoreData);
|
||||||
} catch (const Exception& e) {
|
} catch (const Exception& e) {
|
||||||
qWarning() << e.cause();
|
qWarning() << e.cause();
|
||||||
}
|
}
|
||||||
|
@ -216,9 +216,9 @@ void ProgressDialog::onTaskSucceeded()
|
|||||||
|
|
||||||
void ProgressDialog::changeStatus([[maybe_unused]] const QString& status)
|
void ProgressDialog::changeStatus([[maybe_unused]] const QString& status)
|
||||||
{
|
{
|
||||||
ui->globalStatusLabel->setText(task->getStatus());
|
ui->globalStatusLabel->setText(m_task->getStatus());
|
||||||
ui->globalStatusLabel->adjustSize();
|
ui->globalStatusLabel->adjustSize();
|
||||||
ui->globalStatusDetailsLabel->setText(task->getDetails());
|
ui->globalStatusDetailsLabel->setText(m_task->getDetails());
|
||||||
ui->globalStatusDetailsLabel->adjustSize();
|
ui->globalStatusDetailsLabel->adjustSize();
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user