mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-01-30 23:48:44 +03:00
fix bug
This commit is contained in:
@@ -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"
|
||||||
|
|
||||||
|
|||||||
@@ -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),
|
||||||
|
|||||||
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user