This commit is contained in:
QIDI TECH
2023-12-30 15:24:28 +08:00
parent e4497e898c
commit 38ddeff65b
3 changed files with 4 additions and 3 deletions

View File

@@ -131,7 +131,7 @@ void AppConfig::set_defaults()
set("auto_toolbar_size", "100"); set("auto_toolbar_size", "100");
if (get("use_binary_gcode_when_supported").empty()) if (get("use_binary_gcode_when_supported").empty())
set("use_binary_gcode_when_supported", "1"); set("use_binary_gcode_when_supported", "0");
if (get("notify_release").empty()) if (get("notify_release").empty())
set("notify_release", "all"); // or "none" or "release" set("notify_release", "all"); // or "none" or "release"

View File

@@ -1244,7 +1244,7 @@ static wxMenu* generate_help_menu()
//B6 //B6
append_menu_item(helpMenu, wxID_ANY, wxString::Format(_L("%s &Website"), SLIC3R_APP_NAME), append_menu_item(helpMenu, wxID_ANY, wxString::Format(_L("%s &Website"), SLIC3R_APP_NAME),
wxString::Format(_L("Open the %s website in your browser"), SLIC3R_APP_NAME), wxString::Format(_L("Open the %s website in your browser"), SLIC3R_APP_NAME),
[](wxCommandEvent&) { wxGetApp().open_web_page_localized("https://www.qidi3d.com"); }); [](wxCommandEvent&) { wxLaunchDefaultBrowser("https://www.qidi3d.com", 0); });
// TRN Item from "Help" menu // TRN Item from "Help" menu
//append_menu_item(helpMenu, wxID_ANY, wxString::Format(_L("&Quick Start"), SLIC3R_APP_NAME), //append_menu_item(helpMenu, wxID_ANY, wxString::Format(_L("&Quick Start"), SLIC3R_APP_NAME),
// wxString::Format(_L("Open the %s website in your browser"), SLIC3R_APP_NAME), // wxString::Format(_L("Open the %s website in your browser"), SLIC3R_APP_NAME),

View File

@@ -1767,7 +1767,8 @@ void TabPrint::update_description_lines()
if (m_post_process_explanation) { if (m_post_process_explanation) {
m_post_process_explanation->SetText( m_post_process_explanation->SetText(
_L("Post processing scripts shall modify G-code file in place.")); _L("Post processing scripts shall modify G-code file in place."));
m_post_process_explanation->SetPathEnd("post-processing-scripts_283913"); //Y
//m_post_process_explanation->SetPathEnd("post-processing-scripts_283913");
} }
// upadte G-code substitutions from the current configuration // upadte G-code substitutions from the current configuration
{ {