Another try to fix IconRendering on OSX

This commit is contained in:
YuSanka 2018-09-11 12:44:27 +02:00
parent 73ee3f77c3
commit dbf18ed8d4
5 changed files with 9 additions and 9 deletions

View file

@ -1118,11 +1118,11 @@ void show_buttons(bool show)
}
}
void show_info_sizer(bool show)
void show_info_sizer(const bool show, const bool is_update_settings/* = false*/)
{
g_info_sizer->Show(static_cast<size_t>(0), show);
g_info_sizer->Show(1, show && g_show_print_info);
g_manifold_warning_icon->Show(show && g_show_manifold_warning_icon);
g_manifold_warning_icon->Show(show && (!is_update_settings && g_show_manifold_warning_icon));
}
void show_object_name(bool show)