From 62b7f36056140578bfd11003521e80ab1100199b Mon Sep 17 00:00:00 2001 From: Tse Kit Yam Date: Wed, 21 Sep 2016 09:19:44 +1000 Subject: Bug [#1863]. Allow subclass of SCIContentView to set cursor. --- cocoa/PlatCocoa.mm | 2 +- doc/ScintillaHistory.html | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) 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(wid); - if ([idWin isMemberOfClass: [SCIContentView class]]) + if ([idWin isKindOfClass: [SCIContentView class]]) { SCIContentView* container = reinterpret_cast(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 @@ Bug #1855.
  • + On Cocoa, allow subclass of SCIContentView to set cursor. + Bug #1863. +
  • +
  • On GTK+ 3.21+ fix incorrect font size in auto-completion list. Bug #1859.
  • -- cgit v1.2.3