Changeset 111 for trunk/Forms
- Timestamp:
- Nov 27, 2016, 2:34:31 PM (8 years ago)
- Location:
- trunk/Forms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r107 r111 5 5 Width = 775 6 6 Caption = 'xTactics' 7 ClientHeight = 5 917 ClientHeight = 589 8 8 ClientWidth = 775 9 9 Menu = MainMenu1 … … 14 14 OnKeyUp = FormKeyUp 15 15 OnShow = FormShow 16 LCLVersion = '1. 4.4.0'16 LCLVersion = '1.6.0.4' 17 17 WindowState = wsMaximized 18 18 object StatusBar1: TStatusBar 19 19 Left = 0 20 20 Height = 28 21 Top = 56 321 Top = 561 22 22 Width = 775 23 23 Panels = < … … 35 35 object ToolBar1: TToolBar 36 36 Left = 0 37 Height = 56 337 Height = 561 38 38 Top = 0 39 39 Width = 80 … … 118 118 object PaintBox1: TPaintBox 119 119 Left = 80 120 Height = 56 3120 Height = 561 121 121 Top = 0 122 122 Width = 695 -
trunk/Forms/UFormMain.pas
r107 r111 257 257 if Factor.X < Factor.Y then NewZoom := Factor.X 258 258 else NewZoom := Factor.Y; 259 //if NewZoom <> 0 then259 if NewZoom = 0 then NewZoom := 1; 260 260 Zoom := NewZoom; 261 261 CenterMap; … … 330 330 procedure TFormMain.FormShow(Sender: TObject); 331 331 begin 332 Core.XMLConfig1.Filename := 'Config.xml'; 332 333 LoadConfig(Core.XMLConfig1, 'FormMain'); 333 334 Core.PersistentForm.Load(Self, True);
Note:
See TracChangeset
for help on using the changeset viewer.