Don't set the following dialogs to be transients for the editor:

Control point dialog
Edit note dialog
Both types of tempo dialog
Both types of meter dialog.
This commit is contained in:
nick_m 2015-03-14 03:52:03 +11:00
parent 5090934a2c
commit 88e5fccbf1
2 changed files with 0 additions and 10 deletions

View file

@ -1925,7 +1925,6 @@ Editor::edit_control_point (ArdourCanvas::Item* item)
}
ControlPointDialog d (p);
ensure_float (d);
if (d.run () != RESPONSE_ACCEPT) {
return;
@ -1945,7 +1944,6 @@ Editor::edit_notes (MidiRegionView* mrv)
EditNoteDialog* d = new EditNoteDialog (mrv, s);
d->show_all ();
ensure_float (*d);
d->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &Editor::note_edit_done), d));
}