#1459 Parent and child folder link

This commit is contained in:
sictiru 2021-04-26 21:50:13 -07:00
parent 484ec9c835
commit 072dd18cc0
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@
android:autofillHints="@null"
android:textSize="14sp"
android:hint="@string/new_folder_name_hint"
android:inputType="textCapCharacters"
android:inputType="textCapSentences"
android:maxLines="1" />
<ImageView

View file

@ -49,7 +49,7 @@ public class Folder {
for (String parentName : parents) {
if (parentName.equals(AppConstants.ROOT_FOLDER)) continue;
builder.append(parentName);
builder.append(" - ");
builder.append(" ");
}
builder.append(name);
return builder.toString();