summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-10-23 19:34:10 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-10-23 19:34:10 (GMT)
commit898931f2ea5bd372b24ab30cdc623badfb39451b (patch)
tree3faefc0bf73c788fb3f3bf6cd2b8adb859312e1f
parent887179510d198cb0a129fef6959638ab75eec1be (diff)
downloadblt-898931f2ea5bd372b24ab30cdc623badfb39451b.zip
blt-898931f2ea5bd372b24ab30cdc623badfb39451b.tar.gz
blt-898931f2ea5bd372b24ab30cdc623badfb39451b.tar.bz2
configure on Expose, for MacOS darkmode
-rw-r--r--generic/tkbltGraphOp.C4
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkbltGraphOp.C b/generic/tkbltGraphOp.C
index ada2758..725bde7 100644
--- a/generic/tkbltGraphOp.C
+++ b/generic/tkbltGraphOp.C
@@ -420,8 +420,10 @@ void GraphEventProc(ClientData clientData, XEvent* eventPtr)
Graph* graphPtr = (Graph*)clientData;
if (eventPtr->type == Expose) {
- if (eventPtr->xexpose.count == 0)
+ if (eventPtr->xexpose.count == 0) {
+ graphPtr->flags |= RESET;
graphPtr->eventuallyRedraw();
+ }
}
else if (eventPtr->type == FocusIn || eventPtr->type == FocusOut) {
if (eventPtr->xfocus.detail != NotifyInferior) {