diff options
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index ce2c4dd0..12586d3b 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -373,8 +373,8 @@ MainWindow::MainWindow(Settings& settings, OrganizerCore& organizerCore, if (organizerCore.managedGame()->sortMechanism() == MOBase::IPluginGame::SortMechanism::NONE) { - ui->bossButton->setDisabled(true); - ui->bossButton->setToolTip(tr("There is no supported sort mechanism for this game. " + ui->sortButton->setDisabled(true); + ui->sortButton->setToolTip(tr("There is no supported sort mechanism for this game. " "You will probably have to use a third-party tool.")); } @@ -2344,14 +2344,8 @@ void MainWindow::tutorialTriggered() { QAction* tutorialAction = qobject_cast<QAction*>(sender()); if (tutorialAction != nullptr) { - if (QMessageBox::question(this, tr("Start Tutorial?"), - tr("You're about to start a tutorial. For technical " - "reasons it's not possible to end " - "the tutorial early. Continue?"), - QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) { - TutorialManager::instance().activateTutorial("MainWindow", - tutorialAction->data().toString()); - } + TutorialManager::instance().activateTutorial("MainWindow", + tutorialAction->data().toString()); } } |
