Changeset 246 for branches/highdpi/Back.pas
- Timestamp:
- May 21, 2020, 8:17:38 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/highdpi/Back.pas
r210 r246 65 65 begin 66 66 if FullScreen then begin 67 WindowState := ws Maximized;67 WindowState := wsFullScreen; 68 68 if not Assigned(Img) then begin 69 69 FileName := GetGraphicsDir + DirectorySeparator + 'Background.png'; … … 75 75 end else begin 76 76 WindowState := wsNormal; 77 Width := StartDlg.Width + 16; 78 Height := StartDlg.Height + 16; 79 Left := StartDlg.Left - 8; 80 Top := StartDlg.Top - 8; 77 BoundsRect := Bounds(StartDlg.Left - 8, StartDlg.Top - 8, 78 StartDlg.Width + 16, StartDlg.Height + 16); 81 79 end; 82 80 end;
Note:
See TracChangeset
for help on using the changeset viewer.