1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-01-05 17:53:14 +00:00

Remote desktop split fixes.

This commit is contained in:
Ylian Saint-Hilaire
2022-01-28 14:11:37 -08:00
parent 8743d00519
commit 2c66ddc2c2
3 changed files with 15 additions and 3 deletions

View File

@@ -90,7 +90,9 @@ namespace MeshCentralRouter
private void KvmControl_ScreenAreaUpdated(Bitmap desktop, Rectangle r)
{
if (extraDisplays == null) return;
foreach (KVMViewerExtra x in extraDisplays) { x.UpdateScreenArea(desktop, r); }
foreach (KVMViewerExtra x in extraDisplays) {
if (x != null) { x.UpdateScreenArea(desktop, r); }
}
}
private void Parent_ClipboardChanged()