chore: Follow up: Restore bubble padding

This commit is contained in:
S1m 2022-01-14 06:50:24 +00:00 committed by Krille Fear
parent a09a6d1212
commit 7a00dbafad

View file

@ -484,6 +484,9 @@ class MatrixState extends State<Matrix> 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);