Fix some cursor hot spots.
authorCarl Hetherington <carl@carlh.net>
Sun, 14 Nov 2010 22:36:12 +0000 (22:36 +0000)
committerCarl Hetherington <carl@carlh.net>
Sun, 14 Nov 2010 22:36:12 +0000 (22:36 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@8037 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/editor.cc

index 27cd0421a4bd7ffe410a9ff91b8c2cc9af2e72d4..b86fa6a7792d6ebce8d4dc4c3d2a3236c68b0f80 100644 (file)
@@ -1327,17 +1327,17 @@ Editor::build_cursors ()
 
        {
                Glib::RefPtr<Gdk::Pixbuf> 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<Gdk::Pixbuf> 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<Gdk::Pixbuf> 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<Gdk::Pixbuf> 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<Gdk::Pixbuf> 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<Gdk::Pixbuf> 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);
        }
 
        {