summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_mouse.cc
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2015-03-14 03:52:03 +1100
committernick_m <mainsbridge@gmail.com>2015-03-14 03:52:03 +1100
commit88e5fccbf1c59686b1c5eb6ff8c7f0261d5b95a6 (patch)
tree328058a74d77c7080ce564133148a1da6c9a812d /gtk2_ardour/editor_mouse.cc
parent5090934a2ce2f4033c6dfa3ae2d6c911f2a10a45 (diff)
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.
Diffstat (limited to 'gtk2_ardour/editor_mouse.cc')
-rw-r--r--gtk2_ardour/editor_mouse.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc
index f0723ab5bc..392901b74c 100644
--- a/gtk2_ardour/editor_mouse.cc
+++ b/gtk2_ardour/editor_mouse.cc
@@ -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));
}