- Timestamp:
- Jan 8, 2017, 10:59:32 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Start.pas
r30 r31 422 422 r0 := CreateRectRgn(x0, y0, x1, y1); 423 423 for i := 0 to ControlCount - 1 do 424 if not (Controls[i] is TArea) and Controls[i].Visible then424 if not (Controls[i] is TArea) and Controls[i].Visible then 425 425 begin 426 426 with Controls[i].BoundsRect do … … 1092 1092 MiniLine[xm, 2] := cm and $FF; 1093 1093 end; 1094 Mini.EndUpdate;1095 1094 end; 1095 Mini.EndUpdate; 1096 1096 end; 1097 1097 end; … … 1534 1534 end; 1535 1535 if Tab <> 2 then 1536 if ListIndex[Tab] >= 0 then 1537 List.ItemIndex := ListIndex[Tab] 1538 else 1539 List.ItemIndex := 0; 1536 if List.Count > 0 then begin 1537 if (List.Count > ListIndex[Tab]) then 1538 List.ItemIndex := ListIndex[Tab] 1539 else List.ItemIndex := 0; 1540 end else List.ItemIndex := -1; 1540 1541 case Tab of 1541 1542 0:
Note:
See TracChangeset
for help on using the changeset viewer.