summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-11-14 22:36:12 +0000
committerCarl Hetherington <carl@carlh.net>2010-11-14 22:36:12 +0000
commit2d4d9d36792a514f8afdbbaf46560a219b27fc90 (patch)
tree294df40d0282ea9b40695d96d2f67ecbaa78d66a /gtk2_ardour
parentba649118f2b2142a592c6b8592c479f328c4babf (diff)
Fix some cursor hot spots.
git-svn-id: svn://localhost/ardour2/branches/3.0@8037 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor.cc12
1 files 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<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);
}
{