Use borderless windowed mode when toggling to full-screen from an initially windowed stream. Fixes #248
This commit is contained in:
parent
fc849fb51a
commit
524cc97f51
1 changed files with 1 additions and 1 deletions
|
|
@ -442,11 +442,11 @@ bool Session::initialize()
|
|||
|
||||
switch (m_Preferences->windowMode)
|
||||
{
|
||||
default:
|
||||
case StreamingPreferences::WM_FULLSCREEN_DESKTOP:
|
||||
m_FullScreenFlag = SDL_WINDOW_FULLSCREEN_DESKTOP;
|
||||
break;
|
||||
case StreamingPreferences::WM_FULLSCREEN:
|
||||
default:
|
||||
m_FullScreenFlag = SDL_WINDOW_FULLSCREEN;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue