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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2018-08-06 16:47:03 +0300
committerYuSanka <yusanka@gmail.com>2018-08-06 16:47:03 +0300
commit7edc1dd577c2de8cd04ef7e0390d3c819ab154dd (patch)
treefe7499c6b7d7fcba583b677a2becbc4dc8399492 /xs/src/slic3r
parentea163edc41f1e3394e89bd187b25c338418e1433 (diff)
Deleted empty line between "default value" and "variable name"
Diffstat (limited to 'xs/src/slic3r')
-rw-r--r--xs/src/slic3r/GUI/Field.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs/src/slic3r/GUI/Field.cpp b/xs/src/slic3r/GUI/Field.cpp
index 0885e041b..67490820c 100644
--- a/xs/src/slic3r/GUI/Field.cpp
+++ b/xs/src/slic3r/GUI/Field.cpp
@@ -95,9 +95,9 @@ namespace Slic3r { namespace GUI {
wxString tooltip_text("");
wxString tooltip = _(m_opt.tooltip);
if (tooltip.length() > 0)
- tooltip_text = tooltip + "\n " + _(L("default value")) + "\t: " +
+ tooltip_text = tooltip + "\n" + _(L("default value")) + "\t: " +
(boost::iends_with(m_opt_id, "_gcode") ? "\n" : "") + default_string +
- (boost::iends_with(m_opt_id, "_gcode") ? "" : "\n") + "\n " +
+ (boost::iends_with(m_opt_id, "_gcode") ? "" : "\n") +
_(L("variable name")) + "\t: " + m_opt_id;
return tooltip_text;