mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 10:17:55 -06:00
NEW: add menu item of per object process
Change-Id: I09c7516903e59e976f582d7efaff33cc3033c820 Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
parent
e50d75026a
commit
2b23e3c119
6 changed files with 37 additions and 7 deletions
|
@ -1979,7 +1979,18 @@ void ObjectList::load_generic_subobject(const std::string& type_name, const Mode
|
|||
|
||||
//Show Dialog
|
||||
if (wxGetApp().app_config->get("do_not_show_modifer_tips").empty()) {
|
||||
TipsDialog dlg(wxGetApp().mainframe, _L("Add Modifier"));
|
||||
TipsDialog dlg(wxGetApp().mainframe, _L("Add Modifier"), _L("Switch to per-object setting mode to edit modifier settings."), "do_not_show_modifer_tips");
|
||||
dlg.ShowModal();
|
||||
}
|
||||
}
|
||||
|
||||
void ObjectList::switch_to_object_process()
|
||||
{
|
||||
wxGetApp().params_panel()->switch_to_object(true);
|
||||
|
||||
// Show Dialog
|
||||
if (wxGetApp().app_config->get("do_not_show_object_process_tips").empty()) {
|
||||
TipsDialog dlg(wxGetApp().mainframe, _L("Edit Object Process"), _L("Switch to per-object setting mode to edit object process."), "do_not_show_object_process_tips");
|
||||
dlg.ShowModal();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue