mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
Fix of #1645
This commit is contained in:
parent
01dc8e77ac
commit
6094512f8f
2 changed files with 12 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue