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
committerLukas Matena <lukasmatena@seznam.cz>2022-07-15 14:58:17 +0300
commitedc0aa4bcef65ea0f49c47b6be7aa20db855c9ae (patch)
tree88b53402c56ca1a3b2c806c966a281d9044d364e
parent04555862b02c66e58b11e3ae99aebf1c45b8f0f2 (diff)
Mentioned CuraEngine in the CopyrightsDialog
-rw-r--r--src/slic3r/GUI/AboutDialog.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/slic3r/GUI/AboutDialog.cpp b/src/slic3r/GUI/AboutDialog.cpp
index f90b0fb5d..54e41d3df 100644
--- a/src/slic3r/GUI/AboutDialog.cpp
+++ b/src/slic3r/GUI/AboutDialog.cpp
@@ -124,7 +124,9 @@ void CopyrightsDialog::fill_entries()
{ "lib_fts"
, "Forrest Smith" , "https://www.forrestthewoods.com/" },
{ "fast_float"
- , "Daniel Lemire, João Paulo Magalhaes and contributors", "https://github.com/fastfloat/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" }
};
}
@@ -151,7 +153,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);