MappingWidget: call Clear() on numerics and bools

This commit is contained in:
Michael Maltese 2017-06-13 16:56:14 -07:00
parent 94038a1e03
commit ef563fc032
1 changed files with 6 additions and 0 deletions

View File

@ -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()