Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/video/windows/SDL_windowswindow.c
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,9 @@ bool WIN_CreateWindow(SDL_VideoDevice *_this, SDL_Window *window, SDL_Properties

style |= GetWindowStyle(window);
styleEx |= GetWindowStyleEx(window);
if (SDL_GetHintBoolean("SDL_VIDEO_WIN_NOREDIRECTIONBITMAP", false)) {
styleEx |= WS_EX_NOREDIRECTIONBITMAP;
}

// Figure out what the window area will be
WIN_ConstrainPopup(window, false);
Expand Down
Loading