Changeset 273 for trunk/UCore.pas
- Timestamp:
- Jan 30, 2019, 8:08:44 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UCore.pas
r268 r273 95 95 DevelMode: Boolean; 96 96 AnimationSpeed: Integer; 97 ShowCellGrid: Boolean; 97 CellGridVisible: Boolean; 98 UnitShapeVisible: Boolean; 98 99 AutoSaveEnabled: Boolean; 99 100 ReopenLastFile: Boolean; … … 203 204 ScaleDPI1.AutoDetect := XMLConfig1.GetValue('DPIAuto', True); 204 205 FormNewTabIndex := XMLConfig1.GetValue('FormNewTabIndex', 0); 205 ShowCellGrid := XMLConfig1.GetValue('ShowCellGrid', True); 206 CellGridVisible := XMLConfig1.GetValue('CellGridVisible', True); 207 UnitShapeVisible := XMLConfig1.GetValue('UnitShapeVisible', False); 206 208 end; 207 209 … … 219 221 XMLConfig1.SetValue('DPIAuto', ScaleDPI1.AutoDetect); 220 222 XMLConfig1.SetValue('FormNewTabIndex', FormNewTabIndex); 221 XMLConfig1.SetValue('ShowCellGrid', ShowCellGrid); 223 XMLConfig1.SetValue('CellGridVisible', CellGridVisible); 224 XMLConfig1.SetValue('UnitShapeVisible', UnitShapeVisible); 222 225 end; 223 226
Note:
See TracChangeset
for help on using the changeset viewer.