From 9374c359011b73ef433613c304132f7ed71f6453 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 29 Jul 2020 16:05:21 +0200 Subject: [PATCH] Note's title is no longer part of the metadata So even if the YAML metadata is disabled, the title can be set. --- lib/core/note.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/core/note.dart b/lib/core/note.dart index 595d9620..f964ad5a 100644 --- a/lib/core/note.dart +++ b/lib/core/note.dart @@ -157,8 +157,6 @@ class Note with NotesNotifier { } set title(String title) { - if (!canHaveMetadata) return; - _title = title; _notifyModified(); }