summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_summary.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-11-14 22:03:57 +0000
committerCarl Hetherington <carl@carlh.net>2010-11-14 22:03:57 +0000
commitba649118f2b2142a592c6b8592c479f328c4babf (patch)
tree152d564a05fdcd474f80db9e0ddc1fc890586fb2 /gtk2_ardour/editor_summary.cc
parentfc142a3fe630e785f39ba411a8943b05a5dc410d (diff)
Use a couple more cursors in the summary.
git-svn-id: svn://localhost/ardour2/branches/3.0@8036 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_summary.cc')
-rw-r--r--gtk2_ardour/editor_summary.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_summary.cc b/gtk2_ardour/editor_summary.cc
index 5b0902a2f6..dc25824a02 100644
--- a/gtk2_ardour/editor_summary.cc
+++ b/gtk2_ardour/editor_summary.cc
@@ -438,6 +438,12 @@ EditorSummary::set_cursor (Position p)
case INSIDE:
get_window()->set_cursor (*_editor->move_cursor);
break;
+ case TO_LEFT_OR_RIGHT:
+ get_window()->set_cursor (*_editor->expand_left_right_cursor);
+ break;
+ case BELOW_OR_ABOVE:
+ get_window()->set_cursor (*_editor->expand_up_down_cursor);
+ break;
default:
get_window()->set_cursor ();
break;
@@ -476,7 +482,7 @@ EditorSummary::on_motion_notify_event (GdkEventMotion* ev)
}
set_editor (xr, y);
- set_cursor (INSIDE);
+ set_cursor (_start_position);
} else if (_zoom_dragging) {