diff options
| author | Silent <zdanio95@gmail.com> | 2019-07-24 00:18:58 +0200 |
|---|---|---|
| committer | Silent <zdanio95@gmail.com> | 2019-07-24 00:18:58 +0200 |
| commit | 3529dfd69151bcf6c43145dcb5a677c3ae85653f (patch) | |
| tree | 0d19a24b6470e9e2fb57df22107835ca4421c7c6 /Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp | |
| parent | 29ba53f6c32313e551b4797a84a4edf477a4d54e (diff) | |
Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more.
Diffstat (limited to 'Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp index 71972b5c66..dda5915fc5 100644 --- a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp @@ -125,10 +125,10 @@ void GeckoCodeWidget::ConnectWidgets() connect(m_code_list, &QListWidget::customContextMenuRequested, this, &GeckoCodeWidget::OnContextMenuRequested); - connect(m_add_code, &QPushButton::pressed, this, &GeckoCodeWidget::AddCode); - connect(m_remove_code, &QPushButton::pressed, this, &GeckoCodeWidget::RemoveCode); - connect(m_edit_code, &QPushButton::pressed, this, &GeckoCodeWidget::EditCode); - connect(m_download_codes, &QPushButton::pressed, this, &GeckoCodeWidget::DownloadCodes); + connect(m_add_code, &QPushButton::clicked, this, &GeckoCodeWidget::AddCode); + connect(m_remove_code, &QPushButton::clicked, this, &GeckoCodeWidget::RemoveCode); + connect(m_edit_code, &QPushButton::clicked, this, &GeckoCodeWidget::EditCode); + connect(m_download_codes, &QPushButton::clicked, this, &GeckoCodeWidget::DownloadCodes); connect(m_warning, &CheatWarningWidget::OpenCheatEnableSettings, this, &GeckoCodeWidget::OpenGeneralSettings); } |
