1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

NoMouse support

This commit is contained in:
Brian Fiete 2024-08-12 14:11:50 -04:00
parent 01f8af3d97
commit 0964d7805e

View file

@ -167,6 +167,8 @@ WinBFWindow::WinBFWindow(BFWindow* parent, const StringImpl& title, int x, int y
windowFlagsEx |= WS_EX_TOPMOST;
if ((windowFlags & BFWINDOW_ACCEPTFILES))
windowFlagsEx |= WS_EX_ACCEPTFILES;
if ((windowFlags & BFWINDOW_NO_MOUSE))
windowFlagsEx |= WS_EX_TRANSPARENT | WS_EX_LAYERED;
if (windowFlags & BFWINDOW_CLIENT_SIZED)
{