From a13e673782ac6051271c935da42bf19bc48ba9de 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 a5fa9382..14bb52a1 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, ), ],