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:
akallabeth 2018-10-18 16:40:22 +02:00 committed by GitHub
commit 3d0ccb3f5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);