Skip to content

Commit 3a116c7

Browse files
show "create list" before list name in shortcut widget
1 parent e4efc5b commit 3a116c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/nononsenseapps/notepad/widget/shortcut/ShortcutConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ void onOK() {
9393
NnnLogger.error(ShortcutConfig.class, "Unexpected null in listName in ShortcutConfig.java");
9494
}
9595

96-
shortcutTitle = listName + " - " + ShortcutConfig.this.getString(R.string.title_create);
96+
shortcutTitle = ShortcutConfig.this.getString(R.string.title_create) + " - " + listName;
9797

9898
intent.setClass(ShortcutConfig.this, ActivityMain_.class)
9999
.setData(Task.URI)

0 commit comments

Comments
 (0)