mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more.
This commit is contained in:
parent
29ba53f6c3
commit
3529dfd691
23 changed files with 70 additions and 70 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue