mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 15:55:31 +01:00
MappingWidget: call Clear() on numerics and bools
This commit is contained in:
parent
94038a1e03
commit
ef563fc032
@ -98,6 +98,12 @@ void MappingWidget::OnClearFields()
|
|||||||
{
|
{
|
||||||
for (auto* button : m_buttons)
|
for (auto* button : m_buttons)
|
||||||
button->Clear();
|
button->Clear();
|
||||||
|
|
||||||
|
for (auto* spinbox : m_numerics)
|
||||||
|
spinbox->Clear();
|
||||||
|
|
||||||
|
for (auto* checkbox : m_bools)
|
||||||
|
checkbox->Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MappingWidget::Update()
|
void MappingWidget::Update()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user