change in default keyboard shortcuts

This commit is contained in:
azivner
2017-12-18 23:41:13 -05:00
parent 35912f325b
commit 0d6ccd7f61
6 changed files with 48 additions and 16 deletions

View File

@@ -24,7 +24,7 @@ async function createNewNote(parentNoteId, note, sourceId) {
// not updating date_modified to avoig having to sync whole rows
await sql.execute('UPDATE notes_tree SET note_pos = note_pos + 1 WHERE note_pid = ? AND note_pos > ? AND is_deleted = 0',
[utils.nowDate(), parentNoteId, afterNote.note_pos]);
[parentNoteId, afterNote.note_pos]);
await sync_table.addNoteReorderingSync(parentNoteId, sourceId);
}