From d14571edfe8b889b1a87a870474ed7963de9087e Mon Sep 17 00:00:00 2001 From: Mack Date: Mon, 23 Dec 2024 15:12:34 +0800 Subject: [PATCH] ENH:Optimize the STEP mesh UI jira: nojira Change-Id: Ie8d4f1eace04b2c51d4975c67b9a4deb7d88a56f (cherry picked from commit b9aa0397600ab0f5040ac719277c7b16b1371435) --- src/slic3r/GUI/StepMeshDialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/StepMeshDialog.cpp b/src/slic3r/GUI/StepMeshDialog.cpp index fe9dbc9bbf..5035bf51d7 100644 --- a/src/slic3r/GUI/StepMeshDialog.cpp +++ b/src/slic3r/GUI/StepMeshDialog.cpp @@ -117,9 +117,10 @@ StepMeshDialog::StepMeshDialog(wxWindow* parent, Slic3r::Step& file, double line wxBoxSizer* tips_sizer = new wxBoxSizer(wxVERTICAL); wxStaticText* info = new wxStaticText(this, wxID_ANY, _L("Smaller linear and angular deflections result in higher-quality transformations but increase the processing time.")); - wxStaticText *tips = new wxStaticText(this, wxID_ANY, _L("See BambuLab Wiki")); + wxStaticText *tips = new wxStaticText(this, wxID_ANY, _L("View Wiki for more information")); wxFont font(10, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, false); font.SetUnderlined(true); + tips->SetForegroundColour(wxColour(0, 174, 66)); tips->SetFont(font); tips->Bind(wxEVT_LEFT_DOWN, [this](wxMouseEvent& e) { wxLaunchDefaultBrowser("https://wiki.bambulab.com/en/software/bambu-studio/step");