diff options
author | fvogel <fvogelnew1@free.fr> | 2020-07-19 17:00:42 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2020-07-19 17:00:42 (GMT) |
commit | a98e685ef856c63cd31da03cf7463382ad9ceda9 (patch) | |
tree | 012201258f4f6e5b8c95f4f68cf76045f6fc4813 /unix/tkUnixPort.h | |
parent | 132c939d5ab36c6a55d7bc9e1692fd981c9a88ca (diff) | |
download | tk-a98e685ef856c63cd31da03cf7463382ad9ceda9.zip tk-a98e685ef856c63cd31da03cf7463382ad9ceda9.tar.gz tk-a98e685ef856c63cd31da03cf7463382ad9ceda9.tar.bz2 |
The semantics of TkpWillDrawWidget was reversed in a previous commit in this branch. Propagate this change to platforms other than macOS.
Diffstat (limited to 'unix/tkUnixPort.h')
-rw-r--r-- | unix/tkUnixPort.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tkUnixPort.h b/unix/tkUnixPort.h index 491a339..47a0aad 100644 --- a/unix/tkUnixPort.h +++ b/unix/tkUnixPort.h @@ -167,7 +167,7 @@ #define TkpButtonSetDefaults() {} #define TkpDestroyButton(butPtr) {} -#define TkpWillDrawWidget(tkwin) 1 +#define TkpWillDrawWidget(tkwin) 0 #define TkpRedrawWidget(tkwin) #define TkSelUpdateClipboard(a,b) {} #ifndef __CYGWIN__ |