Skip to content

Commit

Permalink
disable top-most window by default; needs to be part of API
Browse files Browse the repository at this point in the history
  • Loading branch information
grouse committed Feb 16, 2025
1 parent 7d8ba64 commit c52d761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win32_vk_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ AppWindow* create_window(WindowCreateDesc desc)
HINSTANCE hInstance = GetModuleHandleA(NULL);

DWORD style = WS_OVERLAPPEDWINDOW;
DWORD ex_style = WS_EX_TOPMOST;
DWORD ex_style = 0;//WS_EX_TOPMOST;

auto *wnd = ALLOC_T(mem_dynamic, AppWindow) {};
defer { map_set(&windows, (u64)wnd->hwnd, wnd); };
Expand Down

0 comments on commit c52d761

Please sign in to comment.