From 2d4d9d36792a514f8afdbbaf46560a219b27fc90 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 14 Nov 2010 22:36:12 +0000 Subject: [PATCH] Fix some cursor hot spots. git-svn-id: svn://localhost/ardour2/branches/3.0@8037 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 27cd0421a4..b86fa6a779 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -1327,17 +1327,17 @@ Editor::build_cursors () { Glib::RefPtr p (::get_icon ("resize_top_left_cursor")); - resize_top_left_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 3, 18); + resize_top_left_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 3, 3); } { Glib::RefPtr p (::get_icon ("resize_top_cursor")); - resize_top_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 10, 24); + resize_top_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 10, 3); } { Glib::RefPtr p (::get_icon ("resize_top_right_cursor")); - resize_top_right_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 18, 18); + resize_top_right_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 18, 3); } { @@ -1347,17 +1347,17 @@ Editor::build_cursors () { Glib::RefPtr p (::get_icon ("resize_bottom_right_cursor")); - resize_bottom_right_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 18, 3); + resize_bottom_right_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 18, 18); } { Glib::RefPtr p (::get_icon ("resize_bottom_cursor")); - resize_bottom_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 10, 3); + resize_bottom_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 10, 24); } { Glib::RefPtr p (::get_icon ("resize_bottom_left_cursor")); - resize_bottom_left_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 3, 3); + resize_bottom_left_cursor = new Gdk::Cursor (Gdk::Display::get_default(), p, 3, 18); } {