aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--cocoa/PlatCocoa.mm2
-rw-r--r--doc/ScintillaHistory.html5
2 files changed, 6 insertions, 1 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm
index 5c61b9c7b..a8ea02f57 100644
--- a/cocoa/PlatCocoa.mm
+++ b/cocoa/PlatCocoa.mm
@@ -1724,7 +1724,7 @@ void Window::Destroy() {
if (wid) {
id idWin = (__bridge id)(wid);
if ([idWin isKindOfClass: [NSWindow class]]) {
- CFBridgingRelease(wid);
+ [idWin close];
}
}
wid = nullptr;
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index 36039a5b4..71eb3896e 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -545,6 +545,11 @@
by disabling animation on 10.13.
</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>