Skip to content

Commit

Permalink
VVD
Browse files Browse the repository at this point in the history
  • Loading branch information
vovodroid committed Aug 18, 2024
1 parent 2acd858 commit 8bf20f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build_release_vs2022.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/slic3r/GUI/Plater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8bf20f4

Please sign in to comment.