summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_canvas.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-01-10 20:06:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-01-10 20:06:11 +0000
commit45b3dcad4c979d1ac5ff8fc2676bc5dfb346372e (patch)
tree26d48fa7249e6641e771f549fc3e6693870b59f7 /gtk2_ardour/editor_canvas.cc
parentbd6dba5c6d91b21ab5b0cc609182b1cb5e44e9f1 (diff)
pitch shift fix from colin f.; fix marker line heights (and a few other things that have height that should span the entire editor canvas
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2880 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_canvas.cc')
-rw-r--r--gtk2_ardour/editor_canvas.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk2_ardour/editor_canvas.cc b/gtk2_ardour/editor_canvas.cc
index b02543767a..4e8858b84c 100644
--- a/gtk2_ardour/editor_canvas.cc
+++ b/gtk2_ardour/editor_canvas.cc
@@ -319,20 +319,20 @@ Editor::track_canvas_size_allocated ()
if (playhead_cursor) playhead_cursor->set_length (canvas_height);
for (MarkerSelection::iterator x = selection->markers.begin(); x != selection->markers.end(); ++x) {
- (*x)->set_line_length (canvas_height);
+ (*x)->set_line_length (full_canvas_height);
}
- range_marker_drag_rect->property_y2() = canvas_height;
- transport_loop_range_rect->property_y2() = canvas_height;
- transport_punch_range_rect->property_y2() = canvas_height;
- transport_punchin_line->property_y2() = canvas_height;
- transport_punchout_line->property_y2() = canvas_height;
+ range_marker_drag_rect->property_y2() = full_canvas_height;
+ transport_loop_range_rect->property_y2() = full_canvas_height;
+ transport_punch_range_rect->property_y2() = full_canvas_height;
+ transport_punchin_line->property_y2() = full_canvas_height;
+ transport_punchout_line->property_y2() = full_canvas_height;
update_fixed_rulers();
redisplay_tempo (true);
if (logo_item) {
- // logo_item->property_height() = canvas_height;
+ // logo_item->property_height() = full_canvas_height;
// logo_item->property_width() = canvas_width;
}