Remove some debug messages.
authorCarl Hetherington <carl@carlh.net>
Wed, 28 Sep 2011 00:36:23 +0000 (00:36 +0000)
committerCarl Hetherington <carl@carlh.net>
Wed, 28 Sep 2011 00:36:23 +0000 (00:36 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10150 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/midi_region_view.cc

index e6ffe1bd51ce3ed01138f9abe30c46258378d965..995a8d194fe931aea1e2bfaaf8aff0ab51506711 100644 (file)
@@ -1547,16 +1547,12 @@ MidiRegionView::update_note (CanvasNote* ev, bool update_ghost_regions)
 {
        boost::shared_ptr<NoteType> note = ev->note();
 
-       cerr << "Note " << *note << " @ region frames " << source_beats_to_region_frames (note->time()) << endl;
-
        const double x = trackview.editor().frame_to_pixel (source_beats_to_region_frames (note->time()));
        const double y1 = midi_stream_view()->note_to_y(note->note());
 
        ev->property_x1() = x;
        ev->property_y1() = y1;
 
-       cerr << "\t" << x << " ... ";
-
        /* trim note display to not overlap the end of its region */
 
        if (note->length() > 0) {