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:
authorbubnikv <bubnikv@gmail.com>2018-12-04 21:10:31 +0300
committerbubnikv <bubnikv@gmail.com>2018-12-04 21:10:31 +0300
commit50e44af46ccc285b90df21da398807665e0d694b (patch)
treef9b2b64a0a611d897cb291f6725b3f2bddb03c3c /src/slic3r/GUI/Tab.hpp
parent27b95584f4c487e6fb31d74482fc57e295b5d80f (diff)
Fixed compilation on OSX,
improved utf8 compatibility of Tab::may_discard_current_dirty_preset(), renamed "SLA Print Profile" / "SLA Material Profile" to just "Print Profile" resp. Material Profile.
Diffstat (limited to 'src/slic3r/GUI/Tab.hpp')
-rw-r--r--src/slic3r/GUI/Tab.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/Tab.hpp b/src/slic3r/GUI/Tab.hpp
index fb9bac7ac..337fbf006 100644
--- a/src/slic3r/GUI/Tab.hpp
+++ b/src/slic3r/GUI/Tab.hpp
@@ -360,7 +360,7 @@ class TabSLAMaterial : public Tab
{
public:
TabSLAMaterial(wxNotebook* parent) :
- Tab(parent, _(L("SLA Material Settings")), "sla_material") {}
+ Tab(parent, _(L("Material Settings")), "sla_material") {}
~TabSLAMaterial() {}
void build() override;
@@ -374,7 +374,7 @@ class TabSLAPrint : public Tab
{
public:
TabSLAPrint(wxNotebook* parent) :
- Tab(parent, _(L("SLA Print Settings")), "sla_print") {}
+ Tab(parent, _(L("Print Settings")), "sla_print") {}
~TabSLAPrint() {}
void build() override;
void reload_config() override;