Skip to content

Commit

Permalink
[v3/windows] Fix dpi scaling on start up (#3145)
Browse files Browse the repository at this point in the history
* [v3/windows] Fix dpi scaling on start up

* add change log
  • Loading branch information
almas1992 authored Dec 19, 2023
1 parent daed414 commit 51afac4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions mkdocs-website/docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions v3/pkg/application/webview_window_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 51afac4

Please sign in to comment.