mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
#1459 Parent and child folder link
This commit is contained in:
parent
484ec9c835
commit
072dd18cc0
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue