diff options
| -rw-r--r-- | cocoa/ScintillaView.mm | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm index 3a73355c4..5bfdce138 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -241,8 +241,10 @@ static NSCursor *cursorFromEnum(Window::Cursor cursor)   */  - (void) viewWillDraw  { -  if (!mOwner) +  if (!mOwner) { +    [super viewWillDraw];      return; +  }    const NSRect *rects;    NSInteger nRects = 0;  | 
