mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
temporarily remove buggy MouseRange-on-Piano-Roll event handlers
This commit is contained in:
parent
03248249c8
commit
d02d8e6ebc
1 changed files with 2 additions and 2 deletions
|
|
@ -467,7 +467,7 @@ PianoRollHeader::on_motion_notify_event (GdkEventMotion* ev)
|
|||
|
||||
int note = _view.y_to_note(ev->y);
|
||||
|
||||
if (editor().current_mouse_mode() == Editing::MouseRange) {
|
||||
if ( false /*editor().current_mouse_mode() == Editing::MouseRange*/ ) { //ToDo: fix this. this mode is buggy, and of questionable utility anyway
|
||||
|
||||
/* select note range */
|
||||
|
||||
|
|
@ -544,7 +544,7 @@ PianoRollHeader::on_button_release_event (GdkEventButton* ev)
|
|||
{
|
||||
int note = _view.y_to_note(ev->y);
|
||||
|
||||
if (editor().current_mouse_mode() == Editing::MouseRange) {
|
||||
if (false /*editor().current_mouse_mode() == Editing::MouseRange*/ ) { //Todo: this mode is buggy, and of questionable utility anyway
|
||||
|
||||
if (Keyboard::no_modifiers_active (ev->state)) {
|
||||
AddNoteSelection (note); // EMIT SIGNAL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue