From e403c0e69c6a3a5fb5dcf5fa5becb06d27f2d4ee Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 7 Mar 2023 15:27:57 +0100 Subject: [PATCH] Fix for #9770 - Filament type not user editable, dropdown only Follow-up 917c9ad4 --- src/slic3r/GUI/Field.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/slic3r/GUI/Field.cpp b/src/slic3r/GUI/Field.cpp index ecb7d6190..c6ffa46ec 100644 --- a/src/slic3r/GUI/Field.cpp +++ b/src/slic3r/GUI/Field.cpp @@ -988,7 +988,6 @@ void Choice::BUILD() { choice_ctrl* temp; if (m_opt.gui_type != ConfigOptionDef::GUIType::undefined - && m_opt.gui_type != ConfigOptionDef::GUIType::select_open && m_opt.gui_type != ConfigOptionDef::GUIType::select_close) { m_is_editable = true; temp = new choice_ctrl(m_parent, wxID_ANY, wxString(""), wxDefaultPosition, size, 0, nullptr, wxTE_PROCESS_ENTER);