From cd10fe1ac468e91ac7e45aae9f67da9170080586 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 13 Feb 2021 13:21:27 +0100 Subject: [PATCH] fix: MetaRow fontsize --- lib/components/list_items/message.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/components/list_items/message.dart b/lib/components/list_items/message.dart index a5fa93828..14bb52a19 100644 --- a/lib/components/list_items/message.dart +++ b/lib/components/list_items/message.dart @@ -254,7 +254,7 @@ class _MetaRow extends StatelessWidget { event.originServerTs.localizedTime(context), style: TextStyle( color: color.withAlpha(200), - fontSize: 11, + fontSize: 11 * AppConfig.fontSizeFactor, ), ), if (event.hasAggregatedEvents(timeline, RelationshipTypes.Edit)) @@ -262,7 +262,7 @@ class _MetaRow extends StatelessWidget { padding: const EdgeInsets.only(left: 2.0), child: Icon( Icons.edit_outlined, - size: 12, + size: 12 * AppConfig.fontSizeFactor, color: color, ), ), @@ -270,7 +270,7 @@ class _MetaRow extends StatelessWidget { if (ownMessage) Icon( displayEvent.statusIcon, - size: 14, + size: 14 * AppConfig.fontSizeFactor, color: color, ), ],