Make split region work across edit groups even if the region is not selected when...
[ardour.git] / gtk2_ardour / editor_cursors.cc
index 3c4e1c5dba9f41f8e2fac75da249a482594c3315..239d27d4f98dd413358e755f9100cc016c083117 100644 (file)
@@ -30,7 +30,7 @@ using namespace ARDOUR;
 using namespace PBD;
 using namespace Gtk;
 
-Editor::Cursor::Cursor (Editor& ed, const string& color, bool (Editor::*callbck)(GdkEvent*,ArdourCanvas::Item*))
+Editor::Cursor::Cursor (Editor& ed, bool (Editor::*callbck)(GdkEvent*,ArdourCanvas::Item*))
        : editor (ed),
          canvas_item (*editor.cursor_group),
          length(1.0)
@@ -42,7 +42,6 @@ Editor::Cursor::Cursor (Editor& ed, const string& color, bool (Editor::*callbck)
        points.push_back(Gnome::Art::Point(1.0, 0.0));
 
        canvas_item.property_points() = points;
-       canvas_item.property_fill_color() = color; //.c_str());
        canvas_item.property_width_pixels() = 1;
        canvas_item.property_first_arrowhead() = TRUE;
        canvas_item.property_last_arrowhead() = TRUE;