Simple mode: Emboss related improvements:
* Deleted "Add text part/negative volume" items from context menu * Disable menu item "Split to parts" for object's context menu * "T"-key doesn't cause an adding of the text-part * Load 3mf by DnD: Add info dialog for a case of "Load geometry" + Change No button to Cancel
This commit is contained in:
parent
402affb035
commit
70ec644ad4
4 changed files with 11 additions and 7 deletions
src/slic3r/GUI
|
@ -2480,6 +2480,9 @@ bool ObjectList::is_splittable(bool to_objects)
|
|||
return false;
|
||||
}
|
||||
|
||||
if (wxGetApp().get_mode() == comSimple)
|
||||
return false; // suppress to split to parts for simple mode
|
||||
|
||||
ModelVolume* volume;
|
||||
if (!get_volume_by_item(item, volume) || !volume)
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue