NEW: Open MakerWorld With BambuStudio GetParam

JIRA: none
Change-Id: I0d65b364f1cd2d634a88882ab072c3e61ea89167
(cherry picked from commit 8eaf45e5359439a7c796fd79876c86775abcf48e)
This commit is contained in:
zorro.zhang 2023-12-26 15:13:36 +08:00 committed by Lane.Wei
parent c58393bbb8
commit fa8b21bfcc
1 changed files with 6 additions and 0 deletions

View File

@ -6007,6 +6007,12 @@ void GUI_App::open_mall_page_dialog()
link_url = host_url + model_url;
}
if (link_url.find("?") != std::string::npos) {
link_url += "&from=bambustudio";
} else {
link_url += "?from=bambustudio";
}
wxLaunchDefaultBrowser(link_url);
}