all repos — fluxbox @ a2cd78563f4870cfb6983ce277d87912115b4791

custom fork of the fluxbox windowmanager

make resize cursors consistent
Dmitry E. Oboukhov unera@debian.org
commit

a2cd78563f4870cfb6983ce277d87912115b4791

parent

797038823815f446c25d191837e63a022209641d

2 files changed, 7 insertions(+), 4 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 1.1 +*08/08/05: + * Make resize cursors consistent (thanks Dmitry E. Oboukhov) + FbWinFrameTheme.cc *08/08/04: * Add selection box to various "choose one of these" menu items (Mark) Toolbar.cc Slit.cc Screen.cc LayerMenu.hh Xinerama.hh StyleMenuItem.cc/hh
M src/FbWinFrameTheme.ccsrc/FbWinFrameTheme.cc

@@ -54,10 +54,10 @@

// create cursors Display *disp = FbTk::App::instance()->display(); m_cursor_move = XCreateFontCursor(disp, XC_fleur); - m_cursor_lower_left_angle = XCreateFontCursor(disp, XC_ll_angle); - m_cursor_lower_right_angle = XCreateFontCursor(disp, XC_lr_angle); - m_cursor_upper_right_angle = XCreateFontCursor(disp, XC_ur_angle); - m_cursor_upper_left_angle = XCreateFontCursor(disp, XC_ul_angle); + m_cursor_lower_left_angle = XCreateFontCursor(disp, XC_bottom_left_corner); + m_cursor_lower_right_angle = XCreateFontCursor(disp, XC_bottom_right_corner); + m_cursor_upper_right_angle = XCreateFontCursor(disp, XC_top_right_corner); + m_cursor_upper_left_angle = XCreateFontCursor(disp, XC_top_left_corner); m_cursor_left_side = XCreateFontCursor(disp, XC_left_side); m_cursor_top_side = XCreateFontCursor(disp, XC_top_side); m_cursor_right_side = XCreateFontCursor(disp, XC_right_side);