mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-09 16:18:20 +00:00
[client] core: don't try to send LGMP messages if the video is stopped
If the video stream is stopped the LGMP session is not valid, so we can't send messages to the client.
This commit is contained in:
parent
74444f8eed
commit
3df7d30cd5
@ -448,7 +448,8 @@ void core_handleMouseNormal(double ex, double ey)
|
|||||||
struct DoublePoint guest;
|
struct DoublePoint guest;
|
||||||
util_localCurToGuest(&guest);
|
util_localCurToGuest(&guest);
|
||||||
|
|
||||||
if (g_state.kvmfrFeatures & KVMFR_FEATURE_SETCURSORPOS)
|
if (!g_state.stopVideo &&
|
||||||
|
g_state.kvmfrFeatures & KVMFR_FEATURE_SETCURSORPOS)
|
||||||
{
|
{
|
||||||
const KVMFRSetCursorPos msg = {
|
const KVMFRSetCursorPos msg = {
|
||||||
.msg.type = KVMFR_MESSAGE_SETCURSORPOS,
|
.msg.type = KVMFR_MESSAGE_SETCURSORPOS,
|
||||||
|
Loading…
Reference in New Issue
Block a user