fix: enable DPI-aware NSIS installer (#7803)

Declare the NSIS installer as DPI-aware so Windows stops bitmap-scaling the setup UI on high-DPI displays.
This commit is contained in:
Dávid Kaya
2026-05-05 18:11:44 +02:00
committed by GitHub
parent b91f9ba5be
commit 15cbdb7d10
2 changed files with 4 additions and 0 deletions

View File

@@ -104,6 +104,7 @@ const config = {
publisherName: 'Bruno Software Inc'
},
nsis: {
include: 'resources/installer.nsh',
oneClick: false,
allowToChangeInstallationDirectory: true,
allowElevation: true,

View File

@@ -0,0 +1,3 @@
; Keep the Windows installer sharp on high-DPI displays instead of letting
; Windows bitmap-scale the full NSIS UI.
ManifestDPIAware true