Module: wine Branch: master Commit: 366ed5495c33e1a8b1c60a8445093f70eae34a38 URL: http://source.winehq.org/git/wine.git/?a=commit;h=366ed5495c33e1a8b1c60a8445...
Author: Jinhui Chen chenjh_06@hotmail.com Date: Wed Mar 25 10:36:08 2015 +0300
winex11.drv: Fix row-resize/col-resize mapping to X cursor.
---
dlls/winex11.drv/mouse.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/dlls/winex11.drv/mouse.c b/dlls/winex11.drv/mouse.c index 5f5bdeb..0858f2e 100644 --- a/dlls/winex11.drv/mouse.c +++ b/dlls/winex11.drv/mouse.c @@ -815,10 +815,10 @@ static const struct system_cursors comctl32_cursors[] = { 102, "move" }, { 104, "copy" }, { 105, "left_ptr" }, - { 106, "row-resize" }, - { 107, "row-resize" }, + { 106, "col-resize" }, + { 107, "col-resize" }, { 108, "hand2" }, - { 135, "col-resize" }, + { 135, "row-resize" }, { 0 } };
@@ -876,7 +876,7 @@ static const struct cursor_font_fallback fallbacks[] = { "circle", XC_circle }, { "clock", XC_clock }, { "coffee_mug", XC_coffee_mug }, - { "col-resize", XC_sb_v_double_arrow }, + { "col-resize", XC_sb_h_double_arrow }, { "cross", XC_cross }, { "cross_reverse", XC_cross_reverse }, { "crosshair", XC_crosshair }, @@ -913,7 +913,7 @@ static const struct cursor_font_fallback fallbacks[] = { "right_side", XC_right_side }, { "right_tee", XC_right_tee }, { "rightbutton", XC_rightbutton }, - { "row-resize", XC_sb_h_double_arrow }, + { "row-resize", XC_sb_v_double_arrow }, { "rtl_logo", XC_rtl_logo }, { "sailboat", XC_sailboat }, { "sb_down_arrow", XC_sb_down_arrow },