mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 11:29:10 +08:00
Merge pull request #4110 from superDingda/bugfix/4109_restore_minimized_window
fix(windows): correct window restoration behavior after minimization
This commit is contained in:
commit
5b1caf0d08
@ -145,7 +145,7 @@ func (fm *Form) Restore() {
|
|||||||
SC_RESTORE,
|
SC_RESTORE,
|
||||||
0,
|
0,
|
||||||
)
|
)
|
||||||
w32.ShowWindow(fm.hwnd, w32.SW_RESTORE)
|
w32.ShowWindow(fm.hwnd, w32.SW_SHOW)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public methods
|
// Public methods
|
||||||
|
@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Added `-skipembedcreate` flag to build and dev command to improve compile and recompile speed [#4143](https://github.com/wailsapp/wails/pull/4143) by @josStorer
|
- Added `-skipembedcreate` flag to build and dev command to improve compile and recompile speed [#4143](https://github.com/wailsapp/wails/pull/4143) by @josStorer
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- Fixed window restoration behavior after minimization by @superDingda in [#4109](https://github.com/wailsapp/wails/issues/4109)
|
||||||
- Fixed excessive console logging after updating to v2.10.1 by @superDingda in [#4111](https://github.com/wailsapp/wails/issues/4111)
|
- Fixed excessive console logging after updating to v2.10.1 by @superDingda in [#4111](https://github.com/wailsapp/wails/issues/4111)
|
||||||
|
|
||||||
## v2.10.1 - 2025-02-24
|
## v2.10.1 - 2025-02-24
|
||||||
|
Loading…
Reference in New Issue
Block a user