mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-18 19:12:17 +00:00
FIX: fix crash when loading a 3mf
fix plate name encoding issue in Object List Change-Id: I7d5a3261998c9af87b20dab822c7048a4b689790 Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
@@ -933,9 +933,11 @@ void MainFrame::init_tabpanel()
|
||||
wxString url;
|
||||
if (cfg.has("print_host_webui") && !cfg.opt_string("print_host_webui").empty()) {
|
||||
url = cfg.opt_string("print_host_webui");
|
||||
} else if (cfg.has("print_host") && !cfg.opt_string("print_host").empty()) {
|
||||
url = cfg.opt_string("print_host");
|
||||
}
|
||||
else {
|
||||
url = cfg.opt_string("print_host");
|
||||
;
|
||||
}
|
||||
if (url.empty()) {
|
||||
wxString url = wxString::Format("file://%s/web/device/missing_connection.html", from_u8(resources_dir()));
|
||||
|
||||
Reference in New Issue
Block a user