mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Fixed behaviour of buttons in Welcome, Find, Settings, VFS and Debugger dialogs - now reacting to button click, not press
This commit is contained in:
parent
ab228d6407
commit
2016a33277
6 changed files with 17 additions and 17 deletions
|
|
@ -33,10 +33,10 @@ find_dialog::find_dialog(QTextEdit* edit, QWidget *parent, Qt::WindowFlags f) :
|
|||
layout->addLayout(button_layout);
|
||||
setLayout(layout);
|
||||
|
||||
connect(m_find_first, &QPushButton::pressed, this, &find_dialog::find_first);
|
||||
connect(m_find_last, &QPushButton::pressed, this, &find_dialog::find_last);
|
||||
connect(m_find_next, &QPushButton::pressed, this, &find_dialog::find_next);
|
||||
connect(m_find_previous, &QPushButton::pressed, this, &find_dialog::find_previous);
|
||||
connect(m_find_first, &QPushButton::clicked, this, &find_dialog::find_first);
|
||||
connect(m_find_last, &QPushButton::clicked, this, &find_dialog::find_last);
|
||||
connect(m_find_next, &QPushButton::clicked, this, &find_dialog::find_next);
|
||||
connect(m_find_previous, &QPushButton::clicked, this, &find_dialog::find_previous);
|
||||
|
||||
show();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue