diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-10-23 19:34:10 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-10-23 19:34:10 (GMT) |
commit | 898931f2ea5bd372b24ab30cdc623badfb39451b (patch) | |
tree | 3faefc0bf73c788fb3f3bf6cd2b8adb859312e1f /generic | |
parent | 887179510d198cb0a129fef6959638ab75eec1be (diff) | |
download | blt-898931f2ea5bd372b24ab30cdc623badfb39451b.zip blt-898931f2ea5bd372b24ab30cdc623badfb39451b.tar.gz blt-898931f2ea5bd372b24ab30cdc623badfb39451b.tar.bz2 |
configure on Expose, for MacOS darkmode
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkbltGraphOp.C | 4 |
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) { |