mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
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
2 changed files with 2 additions and 4 deletions
|
|
@ -2557,7 +2557,6 @@ ARDOUR_UI::edit_metadata ()
|
||||||
{
|
{
|
||||||
SessionMetadataEditor dialog;
|
SessionMetadataEditor dialog;
|
||||||
dialog.set_session (_session);
|
dialog.set_session (_session);
|
||||||
editor->ensure_float (dialog);
|
|
||||||
Keyboard::magic_widget_grab_focus ();
|
Keyboard::magic_widget_grab_focus ();
|
||||||
dialog.grab_focus ();
|
dialog.grab_focus ();
|
||||||
dialog.run ();
|
dialog.run ();
|
||||||
|
|
@ -2569,7 +2568,6 @@ ARDOUR_UI::import_metadata ()
|
||||||
{
|
{
|
||||||
SessionMetadataImporter dialog;
|
SessionMetadataImporter dialog;
|
||||||
dialog.set_session (_session);
|
dialog.set_session (_session);
|
||||||
editor->ensure_float (dialog);
|
|
||||||
dialog.run ();
|
dialog.run ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -474,7 +474,7 @@ RouteUI::edit_output_configuration ()
|
||||||
output_selector->present ();
|
output_selector->present ();
|
||||||
}
|
}
|
||||||
|
|
||||||
output_selector->set_keep_above (true);
|
//output_selector->set_keep_above (true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -490,7 +490,7 @@ RouteUI::edit_input_configuration ()
|
||||||
input_selector->present ();
|
input_selector->present ();
|
||||||
}
|
}
|
||||||
|
|
||||||
input_selector->set_keep_above (true);
|
//input_selector->set_keep_above (true);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue