Changeset 36 for trunk/Forms/UFormNew.pas
- Timestamp:
- Oct 13, 2019, 5:14:50 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormNew.pas
r31 r36 16 16 ButtonCancel: TButton; 17 17 ButtonOk: TButton; 18 CheckBoxRecordHistory: TCheckBox; 18 19 CheckBoxUndoEnabled: TCheckBox; 19 20 ComboBoxSize: TComboBox; … … 60 61 ComboBoxSize.ItemIndex := Game.Board.Size.X - 2; 61 62 CheckBoxUndoEnabled.Checked := Game.UndoEnabled; 63 CheckBoxRecordHistory.Checked := Game.RecordHistory; 62 64 end; 63 65 … … 66 68 Game.Board.Size := Point(2 + ComboBoxSize.ItemIndex, 2 + ComboBoxSize.ItemIndex); 67 69 Game.UndoEnabled := CheckBoxUndoEnabled.Checked; 70 Game.RecordHistory := CheckBoxRecordHistory.Checked; 68 71 end; 69 72
Note:
See TracChangeset
for help on using the changeset viewer.