[PATCH] winex11.drv: Use correct cursors for OCR_SIZEWE,OCR_SIZENS

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Wed Apr 4 22:51:55 CDT 2018


From: Dmitry Timoshkov <dmitry at baikal.ru>

Fixes: https://bugs.winehq.org/show_bug.cgi?id=44914

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 dlls/winex11.drv/mouse.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c
index c3ec916..a7e2515 100644
--- a/dlls/winex11.drv/mouse.c
+++ b/dlls/winex11.drv/mouse.c
@@ -834,8 +834,8 @@ static const struct system_cursors user32_cursors[] =
     { OCR_ICON,        "icon" },
     { OCR_SIZENWSE,    "top_left_corner" },
     { OCR_SIZENESW,    "top_right_corner" },
-    { OCR_SIZEWE,      "left_side" },
-    { OCR_SIZENS,      "top_side" },
+    { OCR_SIZEWE,      "h_double_arrow" },
+    { OCR_SIZENS,      "v_double_arrow" },
     { OCR_NO,          "not-allowed" },
     { OCR_HAND,        "hand2" },
     { OCR_APPSTARTING, "left_ptr_watch" },
-- 
1.9.1




More information about the wine-devel mailing list