added comment

pull/212/head
Marocco2 1 year ago committed by Peter Repukat
parent 4fc3ff8e93
commit be4c8fb209

@ -336,6 +336,9 @@ void TargetWindow::createWindow()
style |= WS_POPUP;
SetWindowLong(hwnd, GWL_STYLE, style);
// hiding GlosSI from Alt-Tab list
// https://learn.microsoft.com/en-us/windows/win32/winmsg/extended-window-styles
auto exStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
exStyle |= WS_EX_TOOLWINDOW;
SetWindowLong(hwnd, GWL_EXSTYLE, exStyle);

Loading…
Cancel
Save