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-05-13 19:01:00 +0300
committerbubnikv <bubnikv@gmail.com>2019-05-13 19:01:00 +0300
commit0787fa861a1cc513ac1a314ab1ab3fbab56be7cc (patch)
treef18857fd1c842d36eb19c0cccddcccec84eab011 /src/slic3r/GUI/SysInfoDialog.cpp
parentf47839e824d8bb66ef6da0d1733187ed01c22948 (diff)
Updated handling of the SLIC3R_BUILD_ID key
Diffstat (limited to 'src/slic3r/GUI/SysInfoDialog.cpp')
-rw-r--r--src/slic3r/GUI/SysInfoDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/SysInfoDialog.cpp b/src/slic3r/GUI/SysInfoDialog.cpp
index ebeadf9c1..052a5c12a 100644
--- a/src/slic3r/GUI/SysInfoDialog.cpp
+++ b/src/slic3r/GUI/SysInfoDialog.cpp
@@ -24,7 +24,7 @@ std::string get_main_info(bool format_as_html)
if (!format_as_html)
out << b_start << SLIC3R_APP_NAME << b_end << line_end;
out << b_start << "Version: " << b_end << SLIC3R_VERSION << line_end;
- out << b_start << "Build: " << b_end << SLIC3R_BUILD << line_end;
+ out << b_start << "Build: " << b_end << SLIC3R_BUILD_ID << line_end;
out << line_end;
out << b_start << "Operating System: " << b_end << wxPlatformInfo::Get().GetOperatingSystemFamilyName() << line_end;
out << b_start << "System Architecture: " << b_end << wxPlatformInfo::Get().GetArchName() << line_end;