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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user