mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-18 07:05:52 +08:00
FIX: [STUDIO-2509] open self for new window on mac
Change-Id: I8fc5b810b00a089f35b914604c511201ae8e5d0b
This commit is contained in:
parent
c44a240ec0
commit
2573d3c112
@ -60,17 +60,17 @@ static void start_new_slicer_or_gcodeviewer(const NewSlicerInstanceType instance
|
|||||||
boost::filesystem::path bin_path = into_path(wxStandardPaths::Get().GetExecutablePath());
|
boost::filesystem::path bin_path = into_path(wxStandardPaths::Get().GetExecutablePath());
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
{
|
{
|
||||||
//bin_path = bin_path.parent_path() / "BambuStudio";
|
bin_path = bin_path.parent_path() / "BambuStudio";
|
||||||
bin_path = "/usr/bin/open";
|
//bin_path = "/usr/bin/open";
|
||||||
// On Apple the wxExecute fails, thus we use boost::process instead.
|
// On Apple the wxExecute fails, thus we use boost::process instead.
|
||||||
BOOST_LOG_TRIVIAL(info) << "Trying to spawn a new slicer \"" << bin_path.string() << "\"";
|
BOOST_LOG_TRIVIAL(info) << "Trying to spawn a new slicer \"" << bin_path.string() << "\"";
|
||||||
try {
|
try {
|
||||||
std::vector<std::string> args = { "-n", "-a", "BambuStudio.app"};
|
std::vector<std::string> args;// = { "-n", "-a", "BambuStudio.app"};
|
||||||
if (!paths_to_open.empty()) {
|
if (!paths_to_open.empty()) {
|
||||||
for (const auto& file : paths_to_open)
|
for (const auto& file : paths_to_open)
|
||||||
args.emplace_back(into_u8(file));
|
args.emplace_back(into_u8(file));
|
||||||
}
|
}
|
||||||
args.emplace_back("--args");
|
//args.emplace_back("--args");
|
||||||
if (instance_type == NewSlicerInstanceType::GCodeViewer)
|
if (instance_type == NewSlicerInstanceType::GCodeViewer)
|
||||||
args.emplace_back("--gcodeviewer");
|
args.emplace_back("--gcodeviewer");
|
||||||
if (instance_type == NewSlicerInstanceType::Slicer && single_instance)
|
if (instance_type == NewSlicerInstanceType::Slicer && single_instance)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user