fix: Edit account comment bug.

This commit is contained in:
sunwen
2024-07-17 17:23:02 +08:00
parent 603d24919b
commit a09381e5bb
6 changed files with 22 additions and 10 deletions

View File

@@ -377,10 +377,10 @@ void MainWindow::enableAllTabWidget()
void MainWindow::handleEmptyScanDataCorrupted()
{
mTabWidget->setTabEnabled(0, false);
mTabWidget->setTabEnabled(1, false);
mTabWidget->setTabEnabled(2, false);
mTabWidget->setCurrentIndex(3);
mTabWidget->setTabEnabled(2, false);
mTabWidget->setTabEnabled(1, false);
mTabWidget->setTabEnabled(0, false);
DialogManager::Default()->requestAlertMessage(tr("Due to empty scan data corruption on the server, needs to be execute the empty scan. No other operations can be conducted until the scan is complete."), OkOnly, tr("Warning"));
}