cabana: fix a wrong settings key (#27085)

fix wrong key
old-commit-hash: 892835da7a
beeps
Dean Lee 2 years ago committed by GitHub
parent 661d1a5727
commit 88e3c87072
  1. 2
      tools/cabana/settings.cc

@ -28,7 +28,7 @@ void Settings::save() {
void Settings::load() {
QSettings s("settings", QSettings::IniFormat);
fps = s.value("fps", 10).toInt();
max_cached_minutes = s.value("cached_minutes", 5).toInt();
max_cached_minutes = s.value("max_cached_minutes", 5).toInt();
chart_height = s.value("chart_height", 200).toInt();
chart_range = s.value("chart_range", 3 * 60).toInt();
chart_column_count = s.value("chart_column_count", 1).toInt();

Loading…
Cancel
Save