diff options
author | culler <culler> | 2018-11-15 17:09:15 (GMT) |
---|---|---|
committer | culler <culler> | 2018-11-15 17:09:15 (GMT) |
commit | da66d37ceb937a37d127756a86d8ee52abbbd398 (patch) | |
tree | 4fa17449e329da7927974cb12a5df6dffc96da71 /macosx/tkMacOSXInit.c | |
parent | 00f20fd81a83e661ed54055ab50cbfbf2ab10fd3 (diff) | |
parent | 13080bd706087870892fd7275ef8df1693e26626 (diff) | |
download | tk-da66d37ceb937a37d127756a86d8ee52abbbd398.zip tk-da66d37ceb937a37d127756a86d8ee52abbbd398.tar.gz tk-da66d37ceb937a37d127756a86d8ee52abbbd398.tar.bz2 |
Use a better method for making test images on the mac emulate test images on other platforms.
Diffstat (limited to 'macosx/tkMacOSXInit.c')
-rw-r--r-- | macosx/tkMacOSXInit.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c index 8e9c600..3a212c4 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.c @@ -47,7 +47,6 @@ static char scriptPath[PATH_MAX + 1] = ""; @synthesize poolLock = _poolLock; @synthesize macMinorVersion = _macMinorVersion; @synthesize isDrawing = _isDrawing; -@synthesize simulateDrawing = _simulateDrawing; @end /* @@ -166,15 +165,15 @@ static char scriptPath[PATH_MAX + 1] = ""; [NSApp setMacMinorVersion: minorVersion]; /* - * We are not drawing yet. + * We are not drawing right now. */ [NSApp setIsDrawing:NO]; - [NSApp setSimulateDrawing:NO]; /* * Be our own delegate. */ + [self setDelegate:self]; /* |