Browse Source

Show [read-only] in the title bar based on the project's state

9.0
Marek Roszko 8 months ago
parent
commit
9d07784835
  1. 2
      kicad/kicad_manager_frame.cpp

2
kicad/kicad_manager_frame.cpp

@ -1052,7 +1052,7 @@ void KICAD_MANAGER_FRAME::ProjectChanged()
title = fn.GetName();
if( !fn.IsDirWritable() )
if( Prj().IsReadOnly() )
title += wxS( " " ) + _( "[Read Only]" );
}
else

Loading…
Cancel
Save