We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4efc5b commit 3a116c7Copy full SHA for 3a116c7
app/src/main/java/com/nononsenseapps/notepad/widget/shortcut/ShortcutConfig.java
@@ -93,7 +93,7 @@ void onOK() {
93
NnnLogger.error(ShortcutConfig.class, "Unexpected null in listName in ShortcutConfig.java");
94
}
95
96
- shortcutTitle = listName + " - " + ShortcutConfig.this.getString(R.string.title_create);
+ shortcutTitle = ShortcutConfig.this.getString(R.string.title_create) + " - " + listName;
97
98
intent.setClass(ShortcutConfig.this, ActivityMain_.class)
99
.setData(Task.URI)
0 commit comments