make sure marker_previous button can go past the previous marker if pressed twice...
[ardour.git] / libs / surfaces / mackie / mackie_midi_builder.cc
index a02126d059b15b4c0d337eefdf421b73fafe268a..801e0cfc7c66e86d34ef407e5a8c61f054e1635a 100644 (file)
@@ -191,8 +191,11 @@ MidiByteArray MackieMidiBuilder::strip_display( unsigned int strip_index, unsign
        retval << 0x12;
        // offset (0 to 0x37 first line, 0x38 to 0x6f for second line )
        retval << ( strip_index * 7 + ( line_number * 0x38 ) );
+       // ascii data to display
        retval << line;
-       if ( strip_index != 7 )
+       
+       // column spacer, unless it's the right-hand column
+       if ( strip_index < 7 )
        {
                retval << ' ';
        }