[Scopeapp-cvs]scopeapp/src TraceView.m,1.19,1.20
Status: Alpha
Brought to you by:
narge
From: <sco...@li...> - 2003-04-23 06:28:52
|
Update of /cvsroot/scopeapp/scopeapp/src In directory sc8-pr-cvs1:/tmp/cvs-serv15398 Modified Files: TraceView.m Log Message: Fix crash due to thread-safety issue with text fields (captions are now updated only in the main thread, just before drawing) Index: TraceView.m =================================================================== RCS file: /cvsroot/scopeapp/scopeapp/src/TraceView.m,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** TraceView.m 20 Feb 2003 12:51:32 -0000 1.19 --- TraceView.m 23 Apr 2003 06:28:48 -0000 1.20 *************** *** 112,115 **** --- 112,117 ---- BOOL wasAntiAliased; + [self updateCaptions]; + NSAffineTransform* scaling = [NSAffineTransform transform]; *************** *** 501,505 **** [self updateDisplay: 0]; [self updateDisplay: 1]; - [self updateCaptions]; [self display]; --- 503,506 ---- |