ubuntu-flutter-community / settings

:penguin: :orange_heart: :blue_heart: An Ubuntu Desktop system settings app made with Flutter.
GNU General Public License v3.0
273 stars 48 forks source link

Display page: Invalid double error #410

Closed Jupi007 closed 1 year ago

Jupi007 commented 1 year ago

The following error shows up when I load the display page:

image

It comes from here:

https://github.com/ubuntu-flutter-community/settings/blob/920127af6ed42862fe1aa94ccc7873c337ec140e/lib/view/pages/displays/widgets/monitor_section.dart#L93-L95

config.refreshRate can contain , character, which is invalid as double. The solution could be to do: config.refreshRate.replaceAll(',', '.').