Browse Source
Merge pull request #68 from rignaneseleo/patch-2
Current path returns "Select Folder" instead of an empty string
Caijinglong
5 years ago
No account linked to committer's email address
|
|
|
|
66
|
if (currentPath?.isAll == true) {
|
66
|
if (currentPath?.isAll == true) {
|
67
|
return i18nProvider.getAllGalleryText(options);
|
67
|
return i18nProvider.getAllGalleryText(options);
|
68
|
}
|
68
|
}
|
69
|
- return currentPath?.name ?? "";
|
|
|
|
|
69
|
+ return currentPath?.name ?? "Select Folder";
|
70
|
}
|
70
|
}
|
71
|
|
71
|
|
72
|
GlobalKey scaffoldKey;
|
72
|
GlobalKey scaffoldKey;
|