mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +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));
|
||||
} catch (_) {
|
||||
SnackBarManager().showSnackBar(SnackBar(
|
||||
content:
|
||||
Text(L10n.global().rootPickerUnpickFailureNotification)));
|
||||
content: Text(L10n.global().rootPickerUnpickFailureNotification),
|
||||
duration: k.snackBarDurationNormal,
|
||||
));
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue