summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-02-27 02:32:58 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-02-27 02:32:58 +0000
commitcfd794cd855e721bef09c640766648586355879b (patch)
tree43bafd5cf252207b2f3303115c8b4fa5c6beb718 /gtk2_ardour/time_axis_view.cc
parent8b6652235f2fd048548de712c90ffdc1bc5ed8dd (diff)
colinf's patch to make the cursor be the dbl vertical arrow when over the track resize handle
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@6714 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/time_axis_view.cc')
-rw-r--r--gtk2_ardour/time_axis_view.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc
index 536fdfc9cb..69f3e376ed 100644
--- a/gtk2_ardour/time_axis_view.cc
+++ b/gtk2_ardour/time_axis_view.cc
@@ -1290,6 +1290,9 @@ TimeAxisView::resizer_expose (GdkEventExpose* event)
win->draw_line (light, 1, 9, w - 1, 9);
win->draw_point (light, w - 1, 8);
+ /* use vertical resize mouse cursor */
+ win->set_cursor(Gdk::Cursor(Gdk::SB_V_DOUBLE_ARROW));
+
return true;
}