summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_summary.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-06-18 02:15:43 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-06-18 02:15:43 +0000
commitaef9d4eaeb71ec58b7d3dbaed5195a6b1ae39655 (patch)
treeca07c759480b26901345b5458e4ec488e08fe82e /gtk2_ardour/editor_summary.cc
parent5e12dc768dbf4c3dcacb03e2b5bda42ce824b2f1 (diff)
use the new left/right trim cursor for the editor summary
git-svn-id: svn://localhost/ardour2/branches/3.0@7279 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_summary.cc')
-rw-r--r--gtk2_ardour/editor_summary.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_summary.cc b/gtk2_ardour/editor_summary.cc
index 3e29520641..77f5af527c 100644
--- a/gtk2_ardour/editor_summary.cc
+++ b/gtk2_ardour/editor_summary.cc
@@ -404,7 +404,7 @@ EditorSummary::set_cursor (Position p)
{
switch (p) {
case LEFT:
- get_window()->set_cursor (Gdk::Cursor (Gdk::LEFT_SIDE));
+ get_window()->set_cursor (*_editor->left_side_trim_cursor);
break;
case LEFT_TOP:
get_window()->set_cursor (Gdk::Cursor (Gdk::TOP_LEFT_CORNER));
@@ -416,7 +416,7 @@ EditorSummary::set_cursor (Position p)
get_window()->set_cursor (Gdk::Cursor (Gdk::TOP_RIGHT_CORNER));
break;
case RIGHT:
- get_window()->set_cursor (Gdk::Cursor (Gdk::RIGHT_SIDE));
+ get_window()->set_cursor (*_editor->right_side_trim_cursor);
break;
case RIGHT_BOTTOM:
get_window()->set_cursor (Gdk::Cursor (Gdk::BOTTOM_RIGHT_CORNER));