iplot on macOS is totally slow, thus unusable, due to problems with

repeated calls to XSync. Skipping them still allows iplotting.
This commit is contained in:
Holger Vogt 2024-12-30 13:47:01 +01:00
parent 81431af644
commit c79eb348a2
1 changed files with 4 additions and 0 deletions

View File

@ -1123,7 +1123,11 @@ static int iplot(struct plot *pl, struct dbcomm *db)
}
}
}
/* iplot on macOS is totally slow, thus unusable, due to problems with
repeated calls to XSync. Skipping them still allows iplotting. */
#if !defined(__APPLE__) || !defined(__MACH__)
DevUpdate();
#endif
return inited;
}