remove 2nd of 3 #warnings from the EditingContext refactor

I'm not 100% sure this is correct, but it doesn't really matter - velocity
lollipop drag are vertical only
This commit is contained in:
Paul Davis
2025-07-11 17:40:58 -06:00
parent ff988eec37
commit 57eda4f7ee

View File

@@ -7235,10 +7235,15 @@ void
LollipopDrag::setup_pointer_offset ()
{
NoteBase* note = static_cast<NoteBase*> (_primary->get_data (X_("note")));
#warning paul this needs to use some other math in the non-time axis view case
_pointer_offset = _display->midi_view().midi_region()->source_beats_to_absolute_time (note->note()->time ()).distance (raw_grab_time ());
if (_display->midi_view().show_source()) {
_pointer_offset = timepos_t (note->note()->time ()).distance (raw_grab_time ());
} else {
_pointer_offset = _display->midi_view().midi_region()->source_beats_to_absolute_time (note->note()->time ()).distance (raw_grab_time ());
}
}
/********/
template<typename OrderedPointList, typename OrderedPoint>