diff options
-rw-r--r-- | cocoa/PlatCocoa.mm | 2 | ||||
-rw-r--r-- | doc/ScintillaHistory.html | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index 82a172e3f..1b647e3e8 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -1299,7 +1299,7 @@ void Window::SetCursor(Cursor curs) if (wid) { id idWin = reinterpret_cast<id>(wid); - if ([idWin isMemberOfClass: [SCIContentView class]]) + if ([idWin isKindOfClass: [SCIContentView class]]) { SCIContentView* container = reinterpret_cast<SCIContentView*>(idWin); [container setCursor: curs]; diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index f3f495c32..056af6233 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -542,6 +542,10 @@ <a href="http://sourceforge.net/p/scintilla/bugs/1855/">Bug #1855</a>. </li> <li> + On Cocoa, allow subclass of SCIContentView to set cursor. + <a href="http://sourceforge.net/p/scintilla/bugs/1863/">Bug #1863</a>. + </li> + <li> On GTK+ 3.21+ fix incorrect font size in auto-completion list. <a href="http://sourceforge.net/p/scintilla/bugs/1859/">Bug #1859</a>. </li> |