mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
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:
@@ -104,6 +104,7 @@ const config = {
|
||||
publisherName: 'Bruno Software Inc'
|
||||
},
|
||||
nsis: {
|
||||
include: 'resources/installer.nsh',
|
||||
oneClick: false,
|
||||
allowToChangeInstallationDirectory: true,
|
||||
allowElevation: true,
|
||||
|
||||
3
packages/bruno-electron/resources/installer.nsh
Normal file
3
packages/bruno-electron/resources/installer.nsh
Normal 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
|
||||
Reference in New Issue
Block a user