added missing check for remote app where no floatbar exists

This commit is contained in:
Markus Mattes 2018-10-18 15:33:01 +02:00
parent eea5e2085e
commit a235b44f61
1 changed files with 1 additions and 1 deletions

View File

@ -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);