Skip to content

Commit

Permalink
v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro-Beirao committed Jun 10, 2023
1 parent be38869 commit a66264d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions dsda-launcher/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2348,13 +2348,15 @@ void MainWindow::enable_disable_skill_comboBox()
{
ui->difficulty_comboBox->setEnabled(false);
ui->difficulty_label->setEnabled(false);
ui->difficulty_comboBox->setToolTip("Cannot select a skill level without choosing a map number");
ui->difficulty_comboBox->setToolTip("Cannot select a skill level\n"
"without choosing a map number");
}
else if (ui->playback_lineEdit->text() != "")
{
ui->difficulty_comboBox->setEnabled(false);
ui->difficulty_label->setEnabled(false);
ui->difficulty_comboBox->setToolTip("Cannot select a skill level during demo playback");
ui->difficulty_comboBox->setToolTip("Cannot select a skill level\n"
"during demo playback");
}
else
{
Expand All @@ -2370,7 +2372,8 @@ void MainWindow::enable_disable_complevel_comboBox()
{
ui->complevel_comboBox->setEnabled(false);
ui->complevel_label->setEnabled(false);
ui->complevel_comboBox->setToolTip("Cannot select a complevel during demo playback");
ui->complevel_comboBox->setToolTip("Cannot select a complevel\n"
"during demo playback");
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion dsda-launcher/mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#include <QTextEdit>
#include "endoom.h"

const QString version = "v1.2";
const QString version = "v1.3";

QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
Expand Down
1 change: 1 addition & 0 deletions dsda-launcher/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ QPalette darkPalette;
"QMenu::item:selected {background-color: rgb(55,63,86)}"
"QListView {alternate-background-color: rgb(63, 63, 63);}"
"QMessageBox QPushButton {padding: 5px 10px;}"
"QToolTip {color: rgb(63, 63, 63);}"
);

#endif
Expand Down

0 comments on commit a66264d

Please sign in to comment.