summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_summary.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2017-07-19 08:20:25 -0500
committerBen Loftis <ben@harrisonconsoles.com>2017-07-19 08:20:25 -0500
commit0cb44f9d561996015468d535c01d954b22fa7e2a (patch)
tree8b0dc0a6fd8b039fce1e7613de698f61cc634df7 /gtk2_ardour/editor_summary.cc
parent255d633eddc1d4b8242dd1c4601ace9ce637bccd (diff)
Editor Summary: fix thinko in mouse cursors (trim cursor).
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 3296ce0910..6e3809a9cc 100644
--- a/gtk2_ardour/editor_summary.cc
+++ b/gtk2_ardour/editor_summary.cc
@@ -535,7 +535,7 @@ EditorSummary::set_cursor (Position p)
get_window()->set_cursor (*_editor->_cursors->move);
break;
case TO_LEFT_OR_RIGHT:
- get_window()->set_cursor (*_editor->_cursors->expand_left_right);
+ get_window()->set_cursor (*_editor->_cursors->move);
break;
default:
assert (0);
@@ -652,7 +652,7 @@ EditorSummary::on_motion_notify_event (GdkEventMotion* ev)
}
} else {
- set_cursor ( INSIDE );
+ set_cursor ( get_position(ev->x, ev->y) );
}
return true;