* Source/x11/XGServerWindow.m (standardcursor::): revert resizing

cursor names to the old values upon request of project owner.
This commit is contained in:
Sergii Stoian 2019-04-18 01:22:57 +03:00
parent d4a4888b9d
commit 39e2e16bec
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2019-04-18 Sergii Stoian <stoyan255@gmail.com>
* Source/x11/XGServerWindow.m (standardcursor::): revert resizing
cursor names to the old values upon request of project owner.
2019-04-17 Sergii Stoian <stoyan255@gmail.com>
* Source/x11/XGServerWindow.m (getStandardBitmap): send `bitmapFormat`

View file

@ -4190,19 +4190,19 @@ xgps_cursor_image(Display *xdpy, Drawable draw, const unsigned char *data,
cursor = XCreateFontCursor(dpy, XC_crosshair);
break;
case GSResizeDownCursor:
cursor = XCreateFontCursor(dpy, XC_sb_down_arrow);
cursor = XCreateFontCursor(dpy, XC_bottom_side);
break;
case GSResizeLeftCursor:
cursor = XCreateFontCursor(dpy, XC_sb_left_arrow);
cursor = XCreateFontCursor(dpy, XC_left_side);
break;
case GSResizeLeftRightCursor:
cursor = XCreateFontCursor(dpy, XC_sb_h_double_arrow);
break;
case GSResizeRightCursor:
cursor = XCreateFontCursor(dpy, XC_sb_right_arrow);
cursor = XCreateFontCursor(dpy, XC_right_side);
break;
case GSResizeUpCursor:
cursor = XCreateFontCursor(dpy, XC_sb_up_arrow);
cursor = XCreateFontCursor(dpy, XC_top_side);
break;
case GSResizeUpDownCursor:
cursor = XCreateFontCursor(dpy, XC_sb_v_double_arrow);