mirror of https://github.com/FreeRDP/FreeRDP
Merge pull request #4946 from mmattes/fix/floatbar_app_check_missing
added missing check for remote app where no floatbar exists
This commit is contained in:
commit
3d0ccb3f5d
|
@ -1572,7 +1572,7 @@ static DWORD WINAPI xf_client_thread(LPVOID param)
|
|||
nCount += tmp;
|
||||
}
|
||||
|
||||
if (xfc->floatbar && xfc->fullscreen)
|
||||
if (xfc->floatbar && xfc->fullscreen && !xfc->remote_app)
|
||||
xf_floatbar_hide_and_show(xfc);
|
||||
|
||||
waitStatus = WaitForMultipleObjects(nCount, handles, FALSE, INFINITE);
|
||||
|
|
Loading…
Reference in New Issue