refactor: Remove bubble size slider

This commit is contained in:
Krille 2023-08-11 13:33:16 +02:00
commit 6bd518fa36
No known key found for this signature in database
7 changed files with 18 additions and 46 deletions

View file

@ -444,10 +444,6 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
(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);