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)
|
||||
button->Clear();
|
||||
|
||||
for (auto* spinbox : m_numerics)
|
||||
spinbox->Clear();
|
||||
|
||||
for (auto* checkbox : m_bools)
|
||||
checkbox->Clear();
|
||||
}
|
||||
|
||||
void MappingWidget::Update()
|
||||
|
|
Loading…
Reference in New Issue