mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
NoMouse support
This commit is contained in:
parent
01f8af3d97
commit
0964d7805e
1 changed files with 2 additions and 0 deletions
|
@ -167,6 +167,8 @@ WinBFWindow::WinBFWindow(BFWindow* parent, const StringImpl& title, int x, int y
|
||||||
windowFlagsEx |= WS_EX_TOPMOST;
|
windowFlagsEx |= WS_EX_TOPMOST;
|
||||||
if ((windowFlags & BFWINDOW_ACCEPTFILES))
|
if ((windowFlags & BFWINDOW_ACCEPTFILES))
|
||||||
windowFlagsEx |= WS_EX_ACCEPTFILES;
|
windowFlagsEx |= WS_EX_ACCEPTFILES;
|
||||||
|
if ((windowFlags & BFWINDOW_NO_MOUSE))
|
||||||
|
windowFlagsEx |= WS_EX_TRANSPARENT | WS_EX_LAYERED;
|
||||||
|
|
||||||
if (windowFlags & BFWINDOW_CLIENT_SIZED)
|
if (windowFlags & BFWINDOW_CLIENT_SIZED)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue