AboutBox/Splashscreen: Fix blurring on Mac Retina displays. Patch by @Slidescape, issue #41205,

This commit is contained in:
wp_xyz 2024-11-06 00:11:14 +01:00
parent a265712f5f
commit 0b7d81bd37
2 changed files with 11 additions and 5 deletions

View File

@ -10,13 +10,13 @@ object AboutForm: TAboutForm
ClientWidth = 470
Constraints.MinHeight = 390
Constraints.MinWidth = 470
OnClose = FormClose
OnCreate = AboutFormCreate
OnShow = FormShow
PopupMenu = PopupMenu1
Position = poScreenCenter
ShowHint = True
LCLVersion = '2.1.0.0'
LCLVersion = '4.99.0.0'
OnClose = FormClose
OnCreate = AboutFormCreate
OnShow = FormShow
object Notebook: TPageControl
Left = 0
Height = 340

View File

@ -274,9 +274,15 @@ begin
end;
procedure TAboutForm.LoadLogo;
var
W, H: Integer;
ScaleFactor: Double;
begin
LogoImage.Picture.LoadFromResourceName(HInstance, 'splash_logo', TPortableNetworkGraphic);
ScaleImg(LogoImage.Picture.Bitmap, LogoImage.Width, LogoImage.Height)
ScaleFactor := GetCanvasScaleFactor; // Usually 1.0, but on macOS = 2.0
W := round(LogoImage.Width * ScaleFactor);
H := round(LogoImage.Height * ScaleFactor);
ScaleImg(LogoImage.Picture.Bitmap, W, H);
end;