remove event sensitivity from marker vertical lines
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 3 Nov 2014 14:28:24 +0000 (09:28 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 3 Nov 2014 14:32:08 +0000 (09:32 -0500)
gtk2_ardour/marker.cc

index 81003711435ab5d4715423511dcaf29f1ccdc7e8..a155ce6dd00d580b9cc7aec2905afd273679db6e 100644 (file)
@@ -215,6 +215,7 @@ RangeMarker::setup_line ()
 
     if (!_end_line) {
                _end_line = new ArdourCanvas::Line (editor.get_hscroll_group());
+                _end_line->set_ignore_events (true);
                _end_line->set_y1 (ArdourCanvas::COORD_MAX);
     }
 
@@ -477,6 +478,7 @@ Marker::setup_line ()
 {
         if (_start_line == 0) {
                 _start_line = new ArdourCanvas::Line (editor.get_hscroll_group());
+                _start_line->set_ignore_events (true);
                 _start_line->set_y1 (ArdourCanvas::COORD_MAX);
         }