Skip to content

Commit

Permalink
fix default value
Browse files Browse the repository at this point in the history
  • Loading branch information
ksh-b committed May 1, 2024
1 parent af8007c commit 191b719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class Store {
}

static double get fontScale {
return settings.get("scale", defaultValue: 1);
return settings.get("scale", defaultValue: 1.0);
}

static set fontScale(double scale) {
Expand Down

0 comments on commit 191b719

Please sign in to comment.