From 87615c56c4271b5905fbcb9ab8ee82cefd7d43df Mon Sep 17 00:00:00 2001 From: Thomas Hervey Date: Wed, 18 Jul 2018 10:16:39 -0400 Subject: [PATCH] deselect selected notes on mode exit --- modules/modes/select_note.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/modes/select_note.js b/modules/modes/select_note.js index b5294ab75..b23a0b7c1 100644 --- a/modules/modes/select_note.js +++ b/modules/modes/select_note.js @@ -123,6 +123,8 @@ export function modeSelectNote(context, selectedNoteID) { context.ui().sidebar .hide(); + + context.selectedNoteID(null); };