mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-24 07:54:42 +01:00
Fix missing snackbar duration
This commit is contained in:
parent
b2684b507f
commit
acd361a9f1
1 changed files with 3 additions and 2 deletions
|
@ -300,8 +300,9 @@ class DirPickerState extends State<DirPicker> {
|
||||||
_picks.removeWhere((element) => identical(element, parent));
|
_picks.removeWhere((element) => identical(element, parent));
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
SnackBarManager().showSnackBar(SnackBar(
|
SnackBarManager().showSnackBar(SnackBar(
|
||||||
content:
|
content: Text(L10n.global().rootPickerUnpickFailureNotification),
|
||||||
Text(L10n.global().rootPickerUnpickFailureNotification)));
|
duration: k.snackBarDurationNormal,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue