mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-06 22:47:32 -06:00
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.
This commit is contained in:
parent
2fbfb70994
commit
b0b6e000f2
1 changed files with 7 additions and 6 deletions
|
@ -10882,12 +10882,13 @@ ProjectDropDialog::ProjectDropDialog(const std::string &filename)
|
||||||
m_sizer_main->Add(0, 0, 0, wxEXPAND | wxTOP, 10);
|
m_sizer_main->Add(0, 0, 0, wxEXPAND | wxTOP, 10);
|
||||||
|
|
||||||
wxBoxSizer *m_sizer_bottom = new wxBoxSizer(wxHORIZONTAL);
|
wxBoxSizer *m_sizer_bottom = new wxBoxSizer(wxHORIZONTAL);
|
||||||
wxBoxSizer *m_sizer_left = new wxBoxSizer(wxHORIZONTAL);
|
// 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);
|
// 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(m_sizer_left, 0, wxEXPAND, 5);
|
||||||
m_sizer_bottom->Add(0, 0, 1, wxEXPAND, 5);
|
m_sizer_bottom->Add(0, 0, 1, wxEXPAND, 5);
|
||||||
|
|
||||||
wxBoxSizer *m_sizer_right = new wxBoxSizer(wxHORIZONTAL);
|
wxBoxSizer *m_sizer_right = new wxBoxSizer(wxHORIZONTAL);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue