Remove the fullscreen hotkey message

No longer needed after the hotkeys to enter and exit full screen
mode were merged into one
This commit is contained in:
Alexander Babikov
2025-05-07 21:01:43 +05:00
parent 44376db7f2
commit c42f1e4d12
33 changed files with 51 additions and 316 deletions

View File

@@ -96,7 +96,6 @@ ProgSettings::ProgSettings(QWidget *parent)
ui->checkBoxConfirmExit->setChecked(confirm_exit);
ui->checkBoxConfirmSave->setChecked(confirm_save);
ui->checkBoxConfirmHardReset->setChecked(confirm_reset);
ui->checkBoxFullscreenFirst->setChecked(video_fullscreen_first);
#ifndef Q_OS_WINDOWS
ui->checkBoxMultimediaKeys->setHidden(true);
@@ -111,7 +110,6 @@ ProgSettings::accept()
confirm_exit = ui->checkBoxConfirmExit->isChecked() ? 1 : 0;
confirm_save = ui->checkBoxConfirmSave->isChecked() ? 1 : 0;
confirm_reset = ui->checkBoxConfirmHardReset->isChecked() ? 1 : 0;
video_fullscreen_first = ui->checkBoxFullscreenFirst->isChecked() ? 1 : 0;
inhibit_multimedia_keys = ui->checkBoxMultimediaKeys->isChecked() ? 1 : 0;
loadTranslators(QCoreApplication::instance());