mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-19 12:47:50 -06:00
FIX: fix enable status in object menu
Change-Id: Ie2f8302a6d2b345d7715401c8a4f9467a5fe05ce
This commit is contained in:
parent
f3469729e5
commit
782a35f750
1 changed files with 1 additions and 1 deletions
|
@ -924,7 +924,7 @@ void MenuFactory::create_object_menu()
|
||||||
[]() { return plater()->can_split(false); }, m_parent);
|
[]() { return plater()->can_split(false); }, m_parent);
|
||||||
|
|
||||||
append_submenu(&m_object_menu, split_menu, wxID_ANY, _L("Split"), _L("Split the selected object"), "",
|
append_submenu(&m_object_menu, split_menu, wxID_ANY, _L("Split"), _L("Split the selected object"), "",
|
||||||
[]() { return plater()->can_split(true); }, m_parent);
|
[]() { return plater()->can_split(true) || plater()->can_split(false); }, m_parent);
|
||||||
m_object_menu.AppendSeparator();
|
m_object_menu.AppendSeparator();
|
||||||
|
|
||||||
// BBS: remove Layers Editing
|
// BBS: remove Layers Editing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue