mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-23 20:49:26 +01:00
chore: Follow up: Restore bubble padding
This commit is contained in:
parent
d7bab1456c
commit
88665ac980
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user