From ea07cf27bb639d99e8e576c79c5a6733a0a7407c Mon Sep 17 00:00:00 2001 From: Christian Schmitz Date: Thu, 13 Jan 2022 11:55:37 +1100 Subject: Feature [feature-requests:#1425] Allow Scintilla to run if built without cursor images. --- cocoa/ScintillaView.mm | 2 ++ doc/ScintillaHistory.html | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm index db716c232..c75cdc1f8 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -1244,6 +1244,7 @@ static NSCursor *cursorFromEnum(Window::Cursor cursor) { waitCursor = [[NSCursor alloc] initWithImage: image hotSpot: NSMakePoint(2, 2)]; } else { NSLog(@"Wait cursor is invalid."); + waitCursor = [NSCursor arrowCursor]; } path = [bundle pathForResource: @"mac_cursor_flipped" ofType: @"tiff" inDirectory: nil]; @@ -1252,6 +1253,7 @@ static NSCursor *cursorFromEnum(Window::Cursor cursor) { reverseArrowCursor = [[NSCursor alloc] initWithImage: image hotSpot: NSMakePoint(15, 2)]; } else { NSLog(@"Reverse arrow cursor is invalid."); + reverseArrowCursor = [NSCursor arrowCursor]; } } } diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 68817c39b..9809d7b87 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -568,6 +568,7 @@ Rowan Daniell Arkadiusz Michalski + Christian Schmitz

Releases

@@ -593,6 +594,10 @@ Allow choice of object file directory with makefile by setting DIR_O. Bug #2306. +
  • + On macOS allow Scintilla to run if built without cursor images. + Feature #1425. +
  • Release 5.1.5 -- cgit v1.2.3