Changeset 268 for trunk/UCore.pas


Ignore:
Timestamp:
Jan 20, 2019, 9:32:16 PM (6 years ago)
Author:
chronos
Message:
  • Added: New menu action show/hide map grid lines.
  • Modified: Draw cell polygons without a gap so it can be drawn as solid surface without grid lines.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UCore.pas

    r265 r268  
    9595    DevelMode: Boolean;
    9696    AnimationSpeed: Integer;
     97    ShowCellGrid: Boolean;
    9798    AutoSaveEnabled: Boolean;
    9899    ReopenLastFile: Boolean;
     
    202203  ScaleDPI1.AutoDetect := XMLConfig1.GetValue('DPIAuto', True);
    203204  FormNewTabIndex := XMLConfig1.GetValue('FormNewTabIndex', 0);
     205  ShowCellGrid := XMLConfig1.GetValue('ShowCellGrid', True);
    204206end;
    205207
     
    217219  XMLConfig1.SetValue('DPIAuto', ScaleDPI1.AutoDetect);
    218220  XMLConfig1.SetValue('FormNewTabIndex', FormNewTabIndex);
     221  XMLConfig1.SetValue('ShowCellGrid', ShowCellGrid);
    219222end;
    220223
Note: See TracChangeset for help on using the changeset viewer.