mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-30 01:04:53 +00:00
Merge pull request #13377 from jordan-woyak/middle-clear-fix
DolphinQt: Fix MappingButton not updating text on middle-click clear.
This commit is contained in:
commit
4697f0ec2f
1 changed files with 1 additions and 1 deletions
|
@ -149,9 +149,9 @@ public:
|
||||||
|
|
||||||
bool UnQueueInputDetection(MappingButton* button)
|
bool UnQueueInputDetection(MappingButton* button)
|
||||||
{
|
{
|
||||||
|
button->ConfigChanged();
|
||||||
if (!std::erase(m_clicked_mapping_buttons, button))
|
if (!std::erase(m_clicked_mapping_buttons, button))
|
||||||
return false;
|
return false;
|
||||||
button->ConfigChanged();
|
|
||||||
UpdateInputDetectionStartTimer();
|
UpdateInputDetectionStartTimer();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue