diff options
author | Dmitry E. Oboukhov <unera@debian.org> | 2008-08-05 01:39:57 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-08-05 01:39:57 (GMT) |
commit | a2cd78563f4870cfb6983ce277d87912115b4791 (patch) | |
tree | 652e99bb3bb21ecb0258a322034bd69125fe3737 | |
parent | 797038823815f446c25d191837e63a022209641d (diff) | |
download | fluxbox_lack-a2cd78563f4870cfb6983ce277d87912115b4791.zip fluxbox_lack-a2cd78563f4870cfb6983ce277d87912115b4791.tar.bz2 |
make resize cursors consistent
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/FbWinFrameTheme.cc | 8 |
2 files changed, 7 insertions, 4 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.1 | 2 | Changes for 1.1 |
3 | *08/08/05: | ||
4 | * Make resize cursors consistent (thanks Dmitry E. Oboukhov) | ||
5 | FbWinFrameTheme.cc | ||
3 | *08/08/04: | 6 | *08/08/04: |
4 | * Add selection box to various "choose one of these" menu items (Mark) | 7 | * Add selection box to various "choose one of these" menu items (Mark) |
5 | Toolbar.cc Slit.cc Screen.cc LayerMenu.hh Xinerama.hh StyleMenuItem.cc/hh | 8 | Toolbar.cc Slit.cc Screen.cc LayerMenu.hh Xinerama.hh StyleMenuItem.cc/hh |
diff --git a/src/FbWinFrameTheme.cc b/src/FbWinFrameTheme.cc index 82a8d13..92cb134 100644 --- a/src/FbWinFrameTheme.cc +++ b/src/FbWinFrameTheme.cc | |||
@@ -54,10 +54,10 @@ FbWinFrameTheme::FbWinFrameTheme(int screen_num, const std::string &extra, | |||
54 | // create cursors | 54 | // create cursors |
55 | Display *disp = FbTk::App::instance()->display(); | 55 | Display *disp = FbTk::App::instance()->display(); |
56 | m_cursor_move = XCreateFontCursor(disp, XC_fleur); | 56 | m_cursor_move = XCreateFontCursor(disp, XC_fleur); |
57 | m_cursor_lower_left_angle = XCreateFontCursor(disp, XC_ll_angle); | 57 | m_cursor_lower_left_angle = XCreateFontCursor(disp, XC_bottom_left_corner); |
58 | m_cursor_lower_right_angle = XCreateFontCursor(disp, XC_lr_angle); | 58 | m_cursor_lower_right_angle = XCreateFontCursor(disp, XC_bottom_right_corner); |
59 | m_cursor_upper_right_angle = XCreateFontCursor(disp, XC_ur_angle); | 59 | m_cursor_upper_right_angle = XCreateFontCursor(disp, XC_top_right_corner); |
60 | m_cursor_upper_left_angle = XCreateFontCursor(disp, XC_ul_angle); | 60 | m_cursor_upper_left_angle = XCreateFontCursor(disp, XC_top_left_corner); |
61 | m_cursor_left_side = XCreateFontCursor(disp, XC_left_side); | 61 | m_cursor_left_side = XCreateFontCursor(disp, XC_left_side); |
62 | m_cursor_top_side = XCreateFontCursor(disp, XC_top_side); | 62 | m_cursor_top_side = XCreateFontCursor(disp, XC_top_side); |
63 | m_cursor_right_side = XCreateFontCursor(disp, XC_right_side); | 63 | m_cursor_right_side = XCreateFontCursor(disp, XC_right_side); |