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>2019-08-27 12:39:51 +0300
committerbubnikv <bubnikv@gmail.com>2019-08-27 12:39:51 +0300
commit1e11eab620627c3da3d74690d164f40b53f921bf (patch)
tree1ad831641684b9dc4414b7fbfcca1cd4aae72191 /src/slic3r/GUI/GUI_ObjectLayers.cpp
parenta1f34adcf6b4e48f00056b00fea534b5af5649a5 (diff)
Improved wording of some UI texts and tooltips.
Diffstat (limited to 'src/slic3r/GUI/GUI_ObjectLayers.cpp')
-rw-r--r--src/slic3r/GUI/GUI_ObjectLayers.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectLayers.cpp b/src/slic3r/GUI/GUI_ObjectLayers.cpp
index b30d3ecd3..661e45e05 100644
--- a/src/slic3r/GUI/GUI_ObjectLayers.cpp
+++ b/src/slic3r/GUI/GUI_ObjectLayers.cpp
@@ -24,8 +24,8 @@ ObjectLayers::ObjectLayers(wxWindow* parent) :
m_grid_sizer->SetFlexibleDirection(wxHORIZONTAL);
// Legend for object layers
- for (const std::string col : { "Min Z", "Max Z", "Layer height" }) {
- auto temp = new wxStaticText(m_parent, wxID_ANY, _(L(col)), wxDefaultPosition, /*size*/wxDefaultSize, wxST_ELLIPSIZE_MIDDLE);
+ for (const std::string col : { L("Start at height"), L("Stop at height"), L("Layer height") }) {
+ auto temp = new wxStaticText(m_parent, wxID_ANY, _(col), wxDefaultPosition, /*size*/wxDefaultSize, wxST_ELLIPSIZE_MIDDLE);
temp->SetFont(Slic3r::GUI::wxGetApp().normal_font());
temp->SetBackgroundStyle(wxBG_STYLE_PAINT);
temp->SetFont(wxGetApp().bold_font());
@@ -145,7 +145,7 @@ void ObjectLayers::create_layers_list()
auto sizer = create_layer(range);
auto del_btn = new ScalableButton(m_parent, wxID_ANY, m_bmp_delete);
- del_btn->SetToolTip(_(L("Remove layer")));
+ del_btn->SetToolTip(_(L("Remove layer range")));
sizer->Add(del_btn, 0, wxRIGHT | wxLEFT, em_unit(m_parent));
@@ -154,7 +154,7 @@ void ObjectLayers::create_layers_list()
});
auto add_btn = new ScalableButton(m_parent, wxID_ANY, m_bmp_add);
- add_btn->SetToolTip(_(L("Add layer")));
+ add_btn->SetToolTip(_(L("Add layer range")));
sizer->Add(add_btn, 0, wxRIGHT, em_unit(m_parent));