mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-01-11 18:22:49 +01:00
Merge branch 'restore-bubble-padding' into 'main'
Restore bubble padding See merge request famedly/fluffychat!679
This commit is contained in:
commit
bad45d983f
@ -484,6 +484,9 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
|
|||||||
store.getItem(SettingKeys.fontSizeFactor).then((value) =>
|
store.getItem(SettingKeys.fontSizeFactor).then((value) =>
|
||||||
AppConfig.fontSizeFactor =
|
AppConfig.fontSizeFactor =
|
||||||
double.tryParse(value ?? '') ?? AppConfig.fontSizeFactor);
|
double.tryParse(value ?? '') ?? AppConfig.fontSizeFactor);
|
||||||
|
store.getItem(SettingKeys.bubbleSizeFactor).then((value) =>
|
||||||
|
AppConfig.bubbleSizeFactor =
|
||||||
|
double.tryParse(value ?? '') ?? AppConfig.bubbleSizeFactor);
|
||||||
store
|
store
|
||||||
.getItemBool(SettingKeys.renderHtml, AppConfig.renderHtml)
|
.getItemBool(SettingKeys.renderHtml, AppConfig.renderHtml)
|
||||||
.then((value) => AppConfig.renderHtml = value);
|
.then((value) => AppConfig.renderHtml = value);
|
||||||
|
Loading…
Reference in New Issue
Block a user