fix message about markup elements by changing accel strings from <Mod> to Mod-
[ardour.git] / gtk2_ardour / crossfade_view.cc
index 81f5f4173feb00814d686e809b8a21be5180a364..d553514c811878ee312796b7cd20c731cda0513a 100644 (file)
@@ -25,6 +25,7 @@
 #include "canvas-simplerect.h"
 #include "canvas-curve.h"
 #include "crossfade_view.h"
+#include "global_signals.h"
 #include "gui_thread.h"
 #include "rgb_macros.h"
 #include "audio_time_axis.h"
@@ -178,7 +179,7 @@ CrossfadeView::redraw_curves ()
 
        /* Hence the number of points that we will render */
        int32_t const npoints = editor.frame_to_pixel (max_frames - min_frames);
-       
+
        if (!_visible || !crossfade->active() || npoints < 3) {
                fade_in->hide();
                fade_out->hide();
@@ -214,7 +215,7 @@ CrossfadeView::redraw_curves ()
                p.set_x (xoff + i + 1);
                p.set_y (_height - ((_height - 2) * vec[i]));
        }
-       
+
        fade_out->property_points() = *points;
 
        delete [] vec;
@@ -297,7 +298,7 @@ CrossfadeView::horizontal_position_changed ()
           the other case where the horizontal position change will uncover `undrawn'
           sections).
        */
-       
+
        if (!_all_in_view) {
                redraw_curves ();
        }