Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-02-07 17:55:47 +0300
committerVojtech Kral <vojtech@kral.hk>2019-02-12 12:11:00 +0300
commit7d969a6f364328810e102bc9c127fbd644daaf31 (patch)
tree4058498a58a2d6ecd92b112c3d8968b832be8830 /src/slic3r/GUI/ConfigWizard_private.hpp
parentb0f54e5709a98549dc4811c555658bbca48dc197 (diff)
ConfigWizard: Bugfixes
Diffstat (limited to 'src/slic3r/GUI/ConfigWizard_private.hpp')
-rw-r--r--src/slic3r/GUI/ConfigWizard_private.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/slic3r/GUI/ConfigWizard_private.hpp b/src/slic3r/GUI/ConfigWizard_private.hpp
index c31911429..a226392f8 100644
--- a/src/slic3r/GUI/ConfigWizard_private.hpp
+++ b/src/slic3r/GUI/ConfigWizard_private.hpp
@@ -90,9 +90,6 @@ struct ConfigWizardPage: wxPanel
ConfigWizard::priv *wizard_p() const { return parent->p.get(); }
- virtual bool Show(bool show = true);
- virtual bool Hide() { return Show(false); }
- virtual wxPanel* extra_buttons() { return nullptr; } // XXX
virtual void apply_custom_config(DynamicPrintConfig &config) {}
};
@@ -129,8 +126,11 @@ struct PageCustom: ConfigWizardPage
std::string profile_name() const { return into_u8(tc_profile_name->GetValue()); }
private:
+ static const char* default_profile_name;
+
wxCheckBox *cb_custom;
wxTextCtrl *tc_profile_name;
+ wxString profile_name_prev;
};