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:
parent
81431af644
commit
c79eb348a2
|
|
@ -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();
|
DevUpdate();
|
||||||
|
#endif
|
||||||
return inited;
|
return inited;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue