summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp
diff options
context:
space:
mode:
authorSilent <zdanio95@gmail.com>2019-07-24 00:18:58 +0200
committerSilent <zdanio95@gmail.com>2019-07-24 00:18:58 +0200
commit3529dfd69151bcf6c43145dcb5a677c3ae85653f (patch)
tree0d19a24b6470e9e2fb57df22107835ca4421c7c6 /Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp
parent29ba53f6c32313e551b4797a84a4edf477a4d54e (diff)
Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more.
Diffstat (limited to 'Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp')
-rw-r--r--Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp
index 9ab52eedde..7e1ccb6075 100644
--- a/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp
+++ b/Source/Core/DolphinQt/FIFO/FIFOPlayerWindow.cpp
@@ -163,9 +163,9 @@ void FIFOPlayerWindow::CreateWidgets()
void FIFOPlayerWindow::ConnectWidgets()
{
connect(m_load, &QPushButton::clicked, this, &FIFOPlayerWindow::LoadRecording);
- connect(m_save, &QPushButton::pressed, this, &FIFOPlayerWindow::SaveRecording);
- connect(m_record, &QPushButton::pressed, this, &FIFOPlayerWindow::StartRecording);
- connect(m_stop, &QPushButton::pressed, this, &FIFOPlayerWindow::StopRecording);
+ connect(m_save, &QPushButton::clicked, this, &FIFOPlayerWindow::SaveRecording);
+ connect(m_record, &QPushButton::clicked, this, &FIFOPlayerWindow::StartRecording);
+ connect(m_stop, &QPushButton::clicked, this, &FIFOPlayerWindow::StopRecording);
connect(m_button_box, &QDialogButtonBox::rejected, this, &FIFOPlayerWindow::reject);
connect(m_early_memory_updates, &QCheckBox::toggled, this,
&FIFOPlayerWindow::OnEarlyMemoryUpdatesChanged);