alecmus / lecui

lecui user interface library, for rapid gui application development in C++ on Windows
MIT License
13 stars 5 forks source link

Win+DownArrow also works on forms without a Minimize Control Button. #3

Closed alecmus closed 3 years ago

alecmus commented 3 years ago

When a form's minimize control button is removed through:

#include <lecui/controls.h>
...
lecui::controls ctrls_{*this};
...
ctrls_.minimize(false);
...

the form can still be minimized by using the keyboard shortcut Win+DownArrow. This should not be so.

alecmus commented 3 years ago

Fixed in 55036c164fc351ca1e2e305416a6c5901362cbfe.