[v3/windows] Fix dpi scaling on start up (#3145)

* [v3/windows] Fix dpi scaling on start up

* add change log
This commit is contained in:
ALMAS 2023-12-19 16:31:38 +08:00 committed by GitHub
commit 51afac4f22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed hex values for arrow keys on Darwin by [jaybeecave](https://github.com/jaybeecave) in [#3052](https://github.com/wailsapp/wails/pull/3052).
- Set drag-n-drop for windows to working. Added by [@pylotlight](https://github.com/pylotlight) in [PR](https://github.com/wailsapp/wails/pull/3039)
- Fixed bug for linux in doctor in the event user doesn't have proper drivers installed. Added by [@pylotlight](https://github.com/pylotlight) in [PR](https://github.com/wailsapp/wails/pull/3032)
- Fix dpi scaling on start up (windows). Changed by @almas1992 in [PR](https://github.com/wailsapp/wails/pull/3145)
### Changed

View file

@ -236,6 +236,8 @@ func (w *windowsWebviewWindow) run() {
w.setupChromium()
w.setSize(options.Width, options.Height)
// Register the window with the application
getNativeApplication().registerWindow(w)