diff options
author | Kevin Walzer <kw@codebykevin.com> | 2015-04-07 01:48:05 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2015-04-07 01:48:05 (GMT) |
commit | 809ebd7b888f6a543597c4a087f50f2719093108 (patch) | |
tree | 61c135e772e1ffab833b8a0b5866464b1608882d | |
parent | 991544634825a18479f15f47dbc0f00a5b368505 (diff) | |
download | tk-809ebd7b888f6a543597c4a087f50f2719093108.zip tk-809ebd7b888f6a543597c4a087f50f2719093108.tar.gz tk-809ebd7b888f6a543597c4a087f50f2719093108.tar.bz2 |
Backing out changes; unexpected issues with window resizing that require further investigation
-rw-r--r-- | generic/tkCanvas.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/generic/tkCanvas.c b/generic/tkCanvas.c index 8ebe9ba..14fe1ab 100644 --- a/generic/tkCanvas.c +++ b/generic/tkCanvas.c @@ -2101,19 +2101,6 @@ DisplayCanvas( goto done; } -#ifdef MAC_OSX_TK - /* - * If drawing is disabled, all we need to do is - * clear the REDRAW_PENDING flag. - */ - TkWindow *winPtr = (TkWindow *)(canvasPtr->tkwin); - MacDrawable *macWin = winPtr->privatePtr; - if (macWin && (macWin->flags & TK_DO_NOT_DRAW)){ - canvasPtr->flags &= ~REDRAW_PENDING; - return; - } -#endif - /* * Choose a new current item if that is needed (this could cause event * handlers to be invoked). |