mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 15:37:30 -06:00
misc changes
Signed-off-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
parent
031a027717
commit
86f367b1f6
4 changed files with 29 additions and 22 deletions
|
@ -17,6 +17,7 @@
|
|||
#include "libslic3r/Utils.hpp"
|
||||
#include "libslic3r/AppConfig.hpp"
|
||||
#include "I18N.hpp"
|
||||
#include <locale>
|
||||
|
||||
namespace Slic3r { namespace GUI {
|
||||
|
||||
|
@ -1232,8 +1233,14 @@ void ExtruderOptionsGroup::on_change_OG(const t_config_option_key& opt_id, const
|
|||
|
||||
wxString OptionsGroup::get_url(const std::string& path_end)
|
||||
{
|
||||
//BBS
|
||||
return wxString::Format(L"https://wiki.bambulab.com/%s/software/bambu-studio/%s", L"en", from_u8(path_end));
|
||||
// Softfever: point to sf wiki for seam parameters
|
||||
if (path_end == "Seam") {
|
||||
return wxString::Format(L"https://github.com/SoftFever/BambuStudio-SoftFever/wiki/%s", from_u8(path_end));
|
||||
}
|
||||
else {
|
||||
//BBS
|
||||
return wxString::Format(L"https://wiki.bambulab.com/%s/software/bambu-studio/%s", L"en", from_u8(path_end));
|
||||
}
|
||||
}
|
||||
|
||||
bool OptionsGroup::launch_browser(const std::string& path_end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue