This commit is contained in:
Enrico Turri 2019-01-14 14:42:21 +01:00
parent 01dc8e77ac
commit 6094512f8f
2 changed files with 12 additions and 3 deletions

View file

@ -760,7 +760,8 @@ Sidebar& GUI_App::sidebar()
ObjectManipulation* GUI_App::obj_manipul()
{
return sidebar().obj_manipul();
// If this method is called before plater_ has been initialized, return nullptr (to avoid a crash)
return (plater_ != nullptr) ? sidebar().obj_manipul() : nullptr;
}
ObjectSettings* GUI_App::obj_settings()