Close generalDialog when in USBMS

This commit is contained in:
Nicolas Mailloux 2021-06-29 14:42:51 -04:00
parent 482d90f910
commit b7e772cbe1
3 changed files with 8 additions and 0 deletions

View file

@ -134,6 +134,10 @@ void generalDialog::on_cancelBtn_clicked()
string_writeconfig("/tmp/cancelUpdateDialog", "true");
generalDialog::close();
}
else if(usbmsDialog == true) {
global::usbms::usbmsDialog = false;
generalDialog::close();
}
else {
generalDialog::close();
}

View file

@ -505,6 +505,9 @@ MainWindow::MainWindow(QWidget *parent)
QProcess *proc = new QProcess();
proc->start(prog, args);
QFile::remove("/mnt/onboard/onboard/.inkbox/DEVKEY");
QFile::remove("/mnt/onboard/onboard/.inkbox/DEVKEY.dgst");
reboot(true);
}
}

View file

@ -738,6 +738,7 @@ void settings::on_enableUiScalingCheckBox_toggled(bool checked)
void settings::on_showSystemInfoBtn_clicked()
{
getSystemInfo();
global::usbms::usbmsDialog = false;
global::text::textBrowserContents = global::systemInfoText;
global::text::textBrowserDialog = true;