From 6288a7cfa0c8bf9f405a7f19844475ff298fe7cd Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sat, 7 Dec 2019 16:30:17 +0100 Subject: [PATCH] NotesFolder: Notify listeners on rename --- lib/core/notes_folder.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/core/notes_folder.dart b/lib/core/notes_folder.dart index b213cbc1..023b1f0b 100644 --- a/lib/core/notes_folder.dart +++ b/lib/core/notes_folder.dart @@ -151,5 +151,6 @@ class NotesFolder with ChangeNotifier { var newFullPath = p.join(parentDirName, newName); dir.renameSync(newFullPath); + notifyListeners(); } }