From b0b6e000f214e586699809d3fa15ea57c2001155 Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Fri, 9 May 2025 22:58:46 +0800 Subject: [PATCH] Don't show "remember my choice" on 3mf open dialog (#9547) Don't show "remember my choice" on 3mf open dialog (SoftFever/OrcaSlicer#9108) Lots of people accidentally checked it without realizing the consequences, now we make it more explicit by only allowing change this in preference settings. --- src/slic3r/GUI/Plater.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 7c2c72800a..08c7e36d14 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -10882,12 +10882,13 @@ ProjectDropDialog::ProjectDropDialog(const std::string &filename) m_sizer_main->Add(0, 0, 0, wxEXPAND | wxTOP, 10); wxBoxSizer *m_sizer_bottom = new wxBoxSizer(wxHORIZONTAL); - wxBoxSizer *m_sizer_left = new wxBoxSizer(wxHORIZONTAL); - - auto dont_show_again = create_remember_checkbox(_L("Remember my choice."), this, _L("This option can be changed later in preferences, under 'Load Behaviour'.")); - m_sizer_left->Add(dont_show_again, 0, wxALL, 5); - - m_sizer_bottom->Add(m_sizer_left, 0, wxEXPAND, 5); + // Orca: hide the "Don't show again" checkbox, people keeps accidentally checked this then forgot + // wxBoxSizer *m_sizer_left = new wxBoxSizer(wxHORIZONTAL); + // + // auto dont_show_again = create_remember_checkbox(_L("Remember my choice."), this, _L("This option can be changed later in preferences, under 'Load Behaviour'.")); + // m_sizer_left->Add(dont_show_again, 0, wxALL, 5); + // + // m_sizer_bottom->Add(m_sizer_left, 0, wxEXPAND, 5); m_sizer_bottom->Add(0, 0, 1, wxEXPAND, 5); wxBoxSizer *m_sizer_right = new wxBoxSizer(wxHORIZONTAL);