diff options
author | culler <culler> | 2020-06-05 18:00:00 (GMT) |
---|---|---|
committer | culler <culler> | 2020-06-05 18:00:00 (GMT) |
commit | f31664f2a7c475db0fcb646accf6f58d78407da8 (patch) | |
tree | 57e359e01b5f277c4e8e48737ad4b9608d8f445f /macosx/tkMacOSXPrivate.h | |
parent | 876fc6d65e63ae72fe52d8435ef703efa50fe814 (diff) | |
download | tk-f31664f2a7c475db0fcb646accf6f58d78407da8.zip tk-f31664f2a7c475db0fcb646accf6f58d78407da8.tar.gz tk-f31664f2a7c475db0fcb646accf6f58d78407da8.tar.bz2 |
Fixed a bug in TkpDrawAllViews and added a mechanism to prevent Tcl_WaitForEvent from blocking if there is drawing that needs to be done.
Diffstat (limited to 'macosx/tkMacOSXPrivate.h')
-rw-r--r-- | macosx/tkMacOSXPrivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/tkMacOSXPrivate.h b/macosx/tkMacOSXPrivate.h index 719b0b1..40bbd9c 100644 --- a/macosx/tkMacOSXPrivate.h +++ b/macosx/tkMacOSXPrivate.h @@ -345,11 +345,13 @@ VISIBILITY_HIDDEN int _poolLock; int _macMinorVersion; Bool _isDrawing; + Bool _needsToDraw; #endif } @property int poolLock; @property int macMinorVersion; @property Bool isDrawing; +@property Bool needsToDraw; @end @interface TKApplication(TKInit) |