mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
ConfigWizard: Fix reset checkbox
This commit is contained in:
@@ -205,7 +205,7 @@ PageWelcome::PageWelcome(ConfigWizard *parent) :
|
||||
ConfigWizardPage(parent, wxString::Format(_(L("Welcome to the Slic3r %s")), ConfigWizard::name()), _(L("Welcome"))),
|
||||
printer_picker(nullptr),
|
||||
others_buttons(new wxPanel(parent)),
|
||||
cbox_reset(new wxCheckBox(this, wxID_ANY, _(L("Remove user profiles - install from scratch (a snapshot will be taken beforehand)"))))
|
||||
cbox_reset(nullptr)
|
||||
{
|
||||
if (wizard_p()->flag_startup && wizard_p()->flag_empty_datadir) {
|
||||
wxString::Format(_(L("Run %s")), ConfigWizard::name());
|
||||
@@ -214,6 +214,7 @@ PageWelcome::PageWelcome(ConfigWizard *parent) :
|
||||
ConfigWizard::name())
|
||||
);
|
||||
} else {
|
||||
cbox_reset = new wxCheckBox(this, wxID_ANY, _(L("Remove user profiles - install from scratch (a snapshot will be taken beforehand)")));
|
||||
append(cbox_reset);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user