AboutBox/SplashScreen: Fix blurring on mac Retina displays, part 2. issue #41205

This commit is contained in:
wp_xyz 2024-11-06 15:36:33 +01:00
parent 7cfcb81528
commit 4f007f3d82
3 changed files with 10 additions and 2 deletions

View File

@ -40,6 +40,8 @@ object AboutForm: TAboutForm
Height = 300
Top = 6
Width = 450
Proportional = True
Stretch = True
end
object VersionLabel: TLabel
AnchorSideLeft.Control = LogoImage

View File

@ -9,7 +9,7 @@ object SplashForm: TSplashForm
ClientWidth = 450
FormStyle = fsSplash
Position = poScreenCenter
LCLVersion = '2.1.0.0'
LCLVersion = '4.99.0.0'
object Image: TImage
Left = 0
Height = 300

View File

@ -135,11 +135,17 @@ begin
end;
procedure TSplashForm.DoFirstShow;
var
W, H: Integer;
ScaleFactor: Double;
begin
inherited DoFirstShow;
LoadSplash;
ScaleImg(Image.Picture.Bitmap, Width, Height);
ScaleFactor := GetCanvasScaleFactor; // Usually 1.0, but on macOS = 2.0
W := round(Image.Width * ScaleFactor);
H := round(Image.Height * ScaleFactor);
ScaleImg(Image.Picture.Bitmap, W, H);
end;
end.