Changeset 28 for trunk/Forms/UFormNew.pas
- Timestamp:
- Oct 5, 2019, 11:29:11 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormNew.pas
r20 r28 16 16 ButtonCancel: TButton; 17 17 ButtonOk: TButton; 18 CheckBoxUndoEnabled: TCheckBox; 18 19 ComboBoxSize: TComboBox; 19 20 Label1: TLabel; … … 46 47 begin 47 48 ComboBoxSize.ItemIndex := Game.Board.Size.X - 2; 49 CheckBoxUndoEnabled.Checked := Game.UndoEnabled; 48 50 end; 49 51 … … 51 53 begin 52 54 Game.Board.Size := Point(2 + ComboBoxSize.ItemIndex, 2 + ComboBoxSize.ItemIndex); 55 Game.UndoEnabled := CheckBoxUndoEnabled.Checked; 53 56 end; 54 57
Note:
See TracChangeset
for help on using the changeset viewer.