Merge pull request #6754 from spycrab/qt_no_whatsthis

Qt: Remove "What's this" button
This commit is contained in:
Léo Lam
2018-05-05 16:04:52 +02:00
committed by GitHub
11 changed files with 17 additions and 0 deletions

View File

@ -42,6 +42,7 @@ constexpr int COLUMN_ROLE = Qt::UserRole + 1;
CheatsManager::CheatsManager(QWidget* parent) : QDialog(parent)
{
setWindowTitle(tr("Cheats Manager"));
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
connect(&Settings::Instance(), &Settings::EmulationStateChanged, this,
&CheatsManager::OnStateChanged);