mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-23 13:26:15 +03:00
Revert #817
This commit is contained in:
parent
7729d27b0b
commit
302f988495
1 changed files with 2 additions and 2 deletions
|
@ -69,11 +69,11 @@ public class NoteListWidget extends AppWidgetProvider {
|
|||
|
||||
// Launch create note activity if user taps "+" icon on header
|
||||
PendingIntent newNoteI = PendingIntent.getActivity(context, 0,
|
||||
(new Intent(context, EditNoteActivity.class).putExtra(PARAM_CATEGORY, new Category(category, displayMode == NLW_DISPLAY_STARRED))),
|
||||
new Intent(context, EditNoteActivity.class).putExtra(PARAM_CATEGORY, new Category(category, displayMode == NLW_DISPLAY_STARRED)),
|
||||
PendingIntent.FLAG_UPDATE_CURRENT);
|
||||
|
||||
PendingIntent templatePI = PendingIntent.getActivity(context, 0,
|
||||
(new Intent(context, EditNoteActivity.class).putExtra(PARAM_CATEGORY, new Category(category, displayMode == NLW_DISPLAY_STARRED))),
|
||||
new Intent(context, EditNoteActivity.class),
|
||||
PendingIntent.FLAG_UPDATE_CURRENT);
|
||||
|
||||
if (Notes.isDarkThemeActive(context, darkTheme)) {
|
||||
|
|
Loading…
Reference in a new issue