mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
MappingWidget: call Clear() on numerics and bools
This commit is contained in:
@ -98,6 +98,12 @@ void MappingWidget::OnClearFields()
|
||||
{
|
||||
for (auto* button : m_buttons)
|
||||
button->Clear();
|
||||
|
||||
for (auto* spinbox : m_numerics)
|
||||
spinbox->Clear();
|
||||
|
||||
for (auto* checkbox : m_bools)
|
||||
checkbox->Clear();
|
||||
}
|
||||
|
||||
void MappingWidget::Update()
|
||||
|
Reference in New Issue
Block a user