diff --git a/build_release_vs2022.bat b/build_release_vs2022.bat index 76e8c14f0c2..a2943bb568a 100644 --- a/build_release_vs2022.bat +++ b/build_release_vs2022.bat @@ -37,7 +37,7 @@ setlocal DISABLEDELAYEDEXPANSION cd deps mkdir %build_dir% cd %build_dir% -set DEPS=%CD%/OrcaSlicer_dep +set DEPS=%WP%/../OrcaSlicer_dep1607 if "%1"=="slicer" ( GOTO :slicer diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 7950f9a6694..158602331c1 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -7749,9 +7749,9 @@ void Plater::priv::update_title_dirty_status() wxString title; if (is_project_dirty()) - title = "*" + m_project_name; + title = "*" + m_project_name + " - OrcaVVD"; else - title = m_project_name; + title = m_project_name + " - OrcaVVD"; #ifdef __WINDOWS__ wxGetApp().mainframe->topbar()->SetTitle(title);