mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 15:48:51 +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
|
@ -109,9 +109,9 @@ void FIFOAnalyzer::ConnectWidgets()
|
|||
connect(m_detail_list, &QListWidget::itemSelectionChanged, this,
|
||||
&FIFOAnalyzer::UpdateDescription);
|
||||
|
||||
connect(m_search_new, &QPushButton::pressed, this, &FIFOAnalyzer::BeginSearch);
|
||||
connect(m_search_next, &QPushButton::pressed, this, &FIFOAnalyzer::FindNext);
|
||||
connect(m_search_previous, &QPushButton::pressed, this, &FIFOAnalyzer::FindPrevious);
|
||||
connect(m_search_new, &QPushButton::clicked, this, &FIFOAnalyzer::BeginSearch);
|
||||
connect(m_search_next, &QPushButton::clicked, this, &FIFOAnalyzer::FindNext);
|
||||
connect(m_search_previous, &QPushButton::clicked, this, &FIFOAnalyzer::FindPrevious);
|
||||
}
|
||||
|
||||
void FIFOAnalyzer::Update()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue