From a2cd78563f4870cfb6983ce277d87912115b4791 Mon Sep 17 00:00:00 2001
From: "Dmitry E. Oboukhov" <unera@debian.org>
Date: Mon, 4 Aug 2008 18:39:57 -0700
Subject: make resize cursors consistent

---
 ChangeLog              | 3 +++
 src/FbWinFrameTheme.cc | 8 ++++----
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 9ea83cd..f043c32 100644
--- a/ChangeLog
+++ b/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
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,
     // 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);
-- 
cgit v0.11.2