make resize cursors consistent
Dmitry E. Oboukhov unera@debian.org
2 files changed,
7 insertions(+),
4 deletions(-)
M
ChangeLog
→
ChangeLog
@@ -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.cc
→
src/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);