Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/xorgxrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatt335672 <30179339+matt335672@users.noreply.github.com>2021-09-21 17:41:24 +0300
committerGitHub <noreply@github.com>2021-09-21 17:41:24 +0300
commitd9f08ead9faf736eb93ff0b4b2ae407b03c0b790 (patch)
tree0de52c3c570e24dc8f8d1dcb6864ca059d48c39d
parentb943f0ee0283ed331fbde62605669b104fcca55e (diff)
parent60e245dacad0eaf54c8cd8eb93c3da6869c6ee7e (diff)
Merge pull request #197 from FlintRiverSystems/black-screen-fix
trigger full screen refresh after initializing shared memory (#197)
-rw-r--r--module/rdpClientCon.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/module/rdpClientCon.c b/module/rdpClientCon.c
index 4357aea..a6ab705 100644
--- a/module/rdpClientCon.c
+++ b/module/rdpClientCon.c
@@ -1026,6 +1026,8 @@ rdpClientConProcessMsgClientInfo(rdpPtr dev, rdpClientCon *clientCon)
clientCon->shmemstatus = shmemstatus;
}
+ rdpClientConAddDirtyScreen(dev, clientCon, 0, 0, clientCon->rdp_width, clientCon->rdp_height);
+
return 0;
}