diff options
| -rw-r--r-- | cocoa/PlatCocoa.mm | 3 | ||||
| -rw-r--r-- | doc/ScintillaHistory.html | 5 | 
2 files changed, 6 insertions, 2 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index 0069106e5..6547631ad 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -1908,8 +1908,7 @@ void Window::Destroy()      id idWin = static_cast<id>(wid);      if ([idWin isKindOfClass: [NSWindow class]])      { -      NSWindow* win = static_cast<NSWindow*>(idWin); -      [win release]; +      [idWin close];      }    }    wid = 0; diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index cc08532c6..88c0c8cbb 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -608,6 +608,11 @@  	<a href="http://sourceforge.net/p/scintilla/bugs/1978">Bug #1978</a>.  	</li>  	<li> +	Fix closing autocompletion lists on Cocoa for macOS 10.13 where the window +	was emptying but staying visible. +	<a href="http://sourceforge.net/p/scintilla/bugs/1981/">Bug #1981</a>. +	</li> +	<li>  	Fix Cocoa hang when Scintilla loaded from SMB share on macOS 10.13.  	<a href="http://sourceforge.net/p/scintilla/bugs/1979/">Bug #1979</a>.  	</li>  | 
