frang75/nappgui_src

Wrong cursor shape for ekGUI_CURSOR_SIZENS

SamSandq opened this issue · 1 comments

Minor issue: the shape for ekGUI_CURSOR_SIZENS is just a resizing beam for down.

Please correct in src/osgui/osx/osxglobals.m, line 353:

from:
nscursor = [[NSCursor resizeDownCursor] retain];
to
nscursor = [[NSCursor resizeUpDownCursor] retain];

This may be just the Mac; I have not checked Windows or Linux.

Hi @SamSandq!
Fixed in this commit: 5b247f6

Thanks for reporting.