Skip to content

Commit 58d1e80

Browse files
committed
Fix modal (V0)
This commit is meant to speedup 2.4.1 release and the modal will be changed in a later version.
1 parent c79a62e commit 58d1e80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/components/modals/select_move_or_copy_modal.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class _ExpansionAlbumTileState extends State<ExpansionAlbumTile> {
209209
child: Align(
210210
alignment: Alignment.centerLeft,
211211
child: Text(
212-
"${List.generate(widget.index, (index) => '.').join()}${widget.index > 0 ? ' ' : ''}${widget.album.name}",
212+
"${List.generate(widget.index, (index) => ' ').join()} > ${widget.index > 0 ? ' ' : ''}${widget.album.name}",
213213
overflow: TextOverflow.ellipsis,
214214
style: _disabled ? Theme.of(context).textTheme.bodySmall : Theme.of(context).textTheme.bodyMedium,
215215
),

0 commit comments

Comments
 (0)