Support minimize and maximize state.
Fixes #6893. Minimize is mostly useful for tooling, and maximize is a more user-friendly way of specifying a fullscreen shortcut.
This commit is contained in:
parent
d5219ebafc
commit
6e48f907dd
3 changed files with 15 additions and 0 deletions
|
@ -360,6 +360,10 @@ namespace MainWindow
|
|||
}
|
||||
}
|
||||
|
||||
void Minimize() {
|
||||
ShowWindow(hwndMain, SW_MINIMIZE);
|
||||
}
|
||||
|
||||
RECT DetermineWindowRectangle() {
|
||||
RECT rc;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue