make resize cursors consistent

This commit is contained in:
Dmitry E. Oboukhov 2008-08-04 18:39:57 -07:00 committed by Mark Tiefenbruck
parent 7970388238
commit a2cd78563f
2 changed files with 7 additions and 4 deletions

View file

@ -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

View file

@ -54,10 +54,10 @@ FbWinFrameTheme::FbWinFrameTheme(int screen_num, const std::string &extra,
// 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);