Add initial selection to instrument selector

Also use this from the work editor.
This commit is contained in:
Elias Projahn 2019-12-11 13:19:56 +01:00
parent 4855cafdf3
commit 40acc2b555
2 changed files with 19 additions and 2 deletions

View file

@ -119,7 +119,9 @@ class _WorkEditorState extends State<WorkEditor> {
final List<Instrument> selection = await Navigator.push(
context,
MaterialPageRoute(
builder: (context) => InstrumentsSelector(),
builder: (context) => InstrumentsSelector(
selection: instruments,
),
fullscreenDialog: true,
));