chore: Follow up fix font size slider

This commit is contained in:
krille-chan 2025-10-25 20:45:44 +02:00
parent 8cf46f0a7f
commit c6f0f2b085
No known key found for this signature in database

View file

@ -157,8 +157,9 @@ class SettingsStyleController extends State<SettingsStyle> {
setState(() {});
}
void changeFontSizeFactor(double d) {
AppSettings.fontSizeFactor.setItem(d);
void changeFontSizeFactor(double d) async {
await AppSettings.fontSizeFactor.setItem(d);
setState(() {});
}
@override