feature remove not work code.

This commit is contained in:
alves
2025-12-30 14:23:17 +08:00
parent 9be8ff80e8
commit 8911f696d6
5 changed files with 0 additions and 25 deletions

View File

@@ -4295,27 +4295,6 @@ std::string GUI_App::handle_web_request(std::string cmd)
return "";
}
void GUI_App::handle_script_message(std::string msg)
{
try {
json j = json::parse(msg);
if (j.contains("command")) {
wxString cmd = j["command"];
if (cmd == "user_login") {
if (m_agent) {
m_agent->change_user(j.dump());
if (m_agent->is_user_login()) {
request_user_login(1);
}
}
}
}
}
catch (...) {
;
}
}
void GUI_App::request_model_download(wxString url)
{
if (plater_) {