Metadata windows are no longer transient windows.
Comment out input and output IOSelectorWindows being set to KEEP_ABOVE in the route ui (just in case there is a good reason for it).
This commit is contained in:
parent
73d2d44652
commit
c9d10158f6
@ -2557,7 +2557,6 @@ ARDOUR_UI::edit_metadata ()
|
||||
{
|
||||
SessionMetadataEditor dialog;
|
||||
dialog.set_session (_session);
|
||||
editor->ensure_float (dialog);
|
||||
Keyboard::magic_widget_grab_focus ();
|
||||
dialog.grab_focus ();
|
||||
dialog.run ();
|
||||
@ -2569,7 +2568,6 @@ ARDOUR_UI::import_metadata ()
|
||||
{
|
||||
SessionMetadataImporter dialog;
|
||||
dialog.set_session (_session);
|
||||
editor->ensure_float (dialog);
|
||||
dialog.run ();
|
||||
}
|
||||
|
||||
|
@ -474,7 +474,7 @@ RouteUI::edit_output_configuration ()
|
||||
output_selector->present ();
|
||||
}
|
||||
|
||||
output_selector->set_keep_above (true);
|
||||
//output_selector->set_keep_above (true);
|
||||
}
|
||||
|
||||
void
|
||||
@ -490,7 +490,7 @@ RouteUI::edit_input_configuration ()
|
||||
input_selector->present ();
|
||||
}
|
||||
|
||||
input_selector->set_keep_above (true);
|
||||
//input_selector->set_keep_above (true);
|
||||
}
|
||||
|
||||
bool
|
||||
|
Loading…
Reference in New Issue
Block a user