diff --git a/lib/widgets/matrix.dart b/lib/widgets/matrix.dart index 8ab087ae..440d0643 100644 --- a/lib/widgets/matrix.dart +++ b/lib/widgets/matrix.dart @@ -484,6 +484,9 @@ class MatrixState extends State with WidgetsBindingObserver { store.getItem(SettingKeys.fontSizeFactor).then((value) => AppConfig.fontSizeFactor = double.tryParse(value ?? '') ?? AppConfig.fontSizeFactor); + store.getItem(SettingKeys.bubbleSizeFactor).then((value) => + AppConfig.bubbleSizeFactor = + double.tryParse(value ?? '') ?? AppConfig.bubbleSizeFactor); store .getItemBool(SettingKeys.renderHtml, AppConfig.renderHtml) .then((value) => AppConfig.renderHtml = value);