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:
authorLukas Matena <lukasmatena@seznam.cz>2022-07-15 14:49:45 +0300
committersupermerill <merill@free.fr>2022-07-30 03:55:46 +0300
commit9708dfcc26783174d7dd5e393b769c536fd9cd27 (patch)
tree6a8a87c6bfed0150956c1536fb7aacc2fd8ea300
parent8c18c0da9f8fc5b915a155d115ae99bf19178812 (diff)
Mentioned CuraEngine in the CopyrightsDialog
-rw-r--r--src/slic3r/GUI/AboutDialog.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/slic3r/GUI/AboutDialog.cpp b/src/slic3r/GUI/AboutDialog.cpp
index 7b3597585..67fe83bbb 100644
--- a/src/slic3r/GUI/AboutDialog.cpp
+++ b/src/slic3r/GUI/AboutDialog.cpp
@@ -128,6 +128,8 @@ void CopyrightsDialog::fill_entries()
, "Forrest Smith" , "https://www.forrestthewoods.com/" },
{ "fast_float"
, "Daniel Lemire, João Paulo Magalhaes and contributors", "https://github.com/fastfloat/fast_float" },
+ { "CuraEngine (Arachne, etc.)"
+ , "Ultimaker" , "https://github.com/Ultimaker/CuraEngine" },
{ "Arc Welder"
, "Brad Hochgesang" , "https://github.com/FormerLurker/ArcWelderLib/" },
};
@@ -156,7 +158,7 @@ wxString CopyrightsDialog::get_html_text()
, text_clr_str
, header_str);
- for (auto& entry : m_entries) {
+ for (const auto& entry : m_entries) {
text += wxString::Format(
"<a href=\"%s\">%s</a><br/>"
, entry.link, entry.lib_name);