diff --git a/lib/widgets/notes_backlinks.dart b/lib/widgets/notes_backlinks.dart index 9b255d8f..b4ab8374 100644 --- a/lib/widgets/notes_backlinks.dart +++ b/lib/widgets/notes_backlinks.dart @@ -116,13 +116,13 @@ class NoteSnippet extends StatelessWidget { return Padding( padding: const EdgeInsets.fromLTRB(0.0, 8.0, 0.0, 8.0), - child: Container( - color: theme.scaffoldBackgroundColor, - width: MediaQuery.of(context).size.width, - child: GestureDetector( - onTap: () { - openNoteEditor(context, note); - }, + child: GestureDetector( + onTap: () { + openNoteEditor(context, note); + }, + child: Container( + color: theme.scaffoldBackgroundColor, + width: MediaQuery.of(context).size.width, child: Column( children: [ Text('$title', style: textTheme.bodyText1),