Changeset 431 for trunk/LocalPlayer/Draft.pas
- Timestamp:
- Apr 28, 2022, 10:40:37 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Draft.pas
r352 r431 28 28 Shift: TShiftState; x, y: integer); 29 29 public 30 procedure ShowNewContent(NewMode: integer);30 procedure ShowNewContent(NewMode: TWindowMode); 31 31 protected 32 32 procedure OffscreenPaint; override; … … 502 502 end; 503 503 504 procedure TDraftDlg.ShowNewContent(NewMode: integer);504 procedure TDraftDlg.ShowNewContent(NewMode: TWindowMode); 505 505 begin 506 506 inherited ShowNewContent(NewMode); … … 532 532 i := (y - yFeature) div LinePitch; 533 533 if (x >= xFeature - 21) and (x < ClientWidth) and (ssShift in Shift) then 534 HelpDlg.ShowNewContent( FWindowMode or wmPersistent, hkFeature, code[i])534 HelpDlg.ShowNewContent(WindowModePersistent(FWindowMode), hkFeature, code[i]) 535 535 else if not(code[i] in AutoFeature) then 536 536 begin
Note:
See TracChangeset
for help on using the changeset viewer.