From 148547c765ff38caef25d8513ed507021dc9bfb9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kim=20Silkeb=C3=A6kken=20=28lokaltog=29?= Date: Tue, 26 Jan 2010 11:05:59 +0100 Subject: [PATCH] Fixed cursor orientation when resizing --- src/resize.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resize.c b/src/resize.c index db8e7442..db1ac073 100644 --- a/src/resize.c +++ b/src/resize.c @@ -93,8 +93,8 @@ int resize_graphical_handler(xcb_connection_t *conn, Workspace *ws, int first, i xcb_window_t helpwin = create_window(conn, helprect, XCB_WINDOW_CLASS_INPUT_OUTPUT, (orientation == O_VERTICAL ? - XCB_CURSOR_SB_V_DOUBLE_ARROW : - XCB_CURSOR_SB_H_DOUBLE_ARROW), true, mask, values); + XCB_CURSOR_SB_H_DOUBLE_ARROW : + XCB_CURSOR_SB_V_DOUBLE_ARROW), true, mask, values); xcb_circulate_window(conn, XCB_CIRCULATE_RAISE_LOWEST, helpwin); -- 2.39.5