From b8ac9da4dbeb43c305703e70ef68f05031499fc8 Mon Sep 17 00:00:00 2001 From: Bruno Date: Mon, 16 Dec 2024 13:09:17 -0300 Subject: [PATCH] build/windows: Do not display strong bezel so better match Vista-style Note: I reinforce that, despite the name, this doesn't look like Vista. Following de556c073461ffcd66c4d64b98ff388ff9f4c037 Microsoft use of bezel in Win32 and UWP/WinUI3 apps is inconsistent: sometimes the bezel is there, others not. However, when displayed the bezel never is that dark. So let's at least hide it, just how we do in the Devel warning and Inno do in most dialogs. --- build/windows/installer/base_gimp3264.iss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/windows/installer/base_gimp3264.iss b/build/windows/installer/base_gimp3264.iss index 5ddfadf1fb..345a59b095 100644 --- a/build/windows/installer/base_gimp3264.iss +++ b/build/windows/installer/base_gimp3264.iss @@ -807,6 +807,8 @@ end; //2. LICENSE procedure InfoBeforeLikeLicense(); begin + WizardForm.Bevel.Visible := False; + WizardForm.InfoBeforeClickLabel.Visible := False; WizardForm.InfoBeforeMemo.Height := WizardForm.InfoBeforeMemo.Height + WizardForm.InfoBeforeMemo.Top - WizardForm.InfoBeforeClickLabel.Top; WizardForm.InfoBeforeMemo.Top := WizardForm.InfoBeforeClickLabel.Top;