Changeset 400
- Timestamp:
- Jan 6, 2025, 11:00:03 AM (3 days ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/FormCharts.pas
r396 r400 73 73 NewSeries := TLineSeries.Create(nil); 74 74 NewSeries.LinePen.Color := Color; 75 NewSeries.LinePen.Width := Scale96ToScreen(1); 75 76 for X := 0 to TurnStats.Count - 1 do begin 76 77 if ComboBox1.ItemIndex = 0 then NewSeries.AddXY(X, TurnStats[X].OccupiedCells) -
trunk/Packages/Common/Forms/FormItem.lfm
r365 r400 1 1 object FormItem: TFormItem 2 Left = 10403 Height = 3974 Top = 5405 Width = 4692 Left = 441 3 Height = 446 4 Top = 395 5 Width = 577 6 6 Caption = 'Item' 7 ClientHeight = 3978 ClientWidth = 4697 ClientHeight = 446 8 ClientWidth = 577 9 9 DesignTimePPI = 144 10 10 OnCreate = FormCreate … … 12 12 LCLVersion = '3.6.0.0' 13 13 object ButtonOk: TButton 14 Left = 22414 Left = 332 15 15 Height = 38 16 Top = 35316 Top = 402 17 17 Width = 113 18 18 Anchors = [akRight, akBottom] … … 24 24 end 25 25 object ButtonCancel: TButton 26 Left = 34826 Left = 456 27 27 Height = 38 28 Top = 35328 Top = 402 29 29 Width = 113 30 30 Anchors = [akRight, akBottom] … … 36 36 object ScrollBox1: TScrollBox 37 37 Left = 8 38 Height = 3 3438 Height = 383 39 39 Top = 8 40 Width = 45340 Width = 561 41 41 HorzScrollBar.Page = 1 42 42 VertScrollBar.Page = 1 -
trunk/Packages/Common/Forms/FormItem.pas
r355 r400 176 176 if DataType = dtString then begin 177 177 NewControl := TEdit.Create(nil); 178 NewControl.Width := Scale96ToScreen( 300);178 NewControl.Width := Scale96ToScreen(200); 179 179 end else 180 180 if DataType = dtColor then begin
Note:
See TracChangeset
for help on using the changeset viewer.