mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Tech ENABLE_SHOW_WIPE_MOVES set as default
This commit is contained in:
@@ -248,9 +248,7 @@ bool Preview::init(wxWindow* parent, Model* model)
|
||||
m_combochecklist_options->Create(m_bottom_toolbar_panel, wxID_ANY, _L("Options"), wxDefaultPosition, wxDefaultSize, wxCB_READONLY);
|
||||
std::string options_items = GUI::into_u8(
|
||||
get_option_type_string(OptionType::Travel) + "|0|" +
|
||||
#if ENABLE_SHOW_WIPE_MOVES
|
||||
get_option_type_string(OptionType::Wipe) + "|0|" +
|
||||
#endif // ENABLE_SHOW_WIPE_MOVES
|
||||
get_option_type_string(OptionType::Retractions) + "|0|" +
|
||||
get_option_type_string(OptionType::Unretractions) + "|0|" +
|
||||
get_option_type_string(OptionType::ToolChanges) + "|0|" +
|
||||
@@ -1019,9 +1017,7 @@ wxString Preview::get_option_type_string(OptionType type) const
|
||||
switch (type)
|
||||
{
|
||||
case OptionType::Travel: { return _L("Travel"); }
|
||||
#if ENABLE_SHOW_WIPE_MOVES
|
||||
case OptionType::Wipe: { return _L("Wipe"); }
|
||||
#endif // ENABLE_SHOW_WIPE_MOVES
|
||||
case OptionType::Retractions: { return _L("Retractions"); }
|
||||
case OptionType::Unretractions: { return _L("Deretractions"); }
|
||||
case OptionType::ToolChanges: { return _L("Tool changes"); }
|
||||
|
||||
Reference in New Issue
Block a user