mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
fix(windows): correct window restoration behavior after minimization
- Replace SW_RESTORE with SW_SHOW flag - Resolves #4109
This commit is contained in:
parent
fa4bf38b12
commit
114c15197b
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ func (fm *Form) Restore() {
|
|||
SC_RESTORE,
|
||||
0,
|
||||
)
|
||||
w32.ShowWindow(fm.hwnd, w32.SW_RESTORE)
|
||||
w32.ShowWindow(fm.hwnd, w32.SW_SHOW)
|
||||
}
|
||||
|
||||
// Public methods
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue