Revert "tweak smartsettings again"

This reverts commit d81510e6b2.
This commit is contained in:
Starbeamrainbowlabs 2020-04-27 23:56:34 +01:00
parent d81510e6b2
commit ea14f29a96
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 2 additions and 5 deletions

View File

@ -39,9 +39,7 @@ class UI {
this.config = in_config; this.config = in_config;
this.map_manager = in_map_manager; this.map_manager = in_map_manager;
this.ui_panel = new SmartSettings({ this.ui_panel = new SmartSettings("Settings");
name: "Settings"
});
// this.ui_panel.watch((event) => console.log(event)); // this.ui_panel.watch((event) => console.log(event));
this.tour_enabled = false; this.tour_enabled = false;
@ -59,7 +57,6 @@ class UI {
{ {
type: "select", type: "select",
name: "Reading Type", name: "Reading Type",
selected: "PM25",
items: this.reading_types.map((type) => type.friendly_text), items: this.reading_types.map((type) => type.friendly_text),
callback: (async (event) => { callback: (async (event) => {
let new_type = this.reading_types.find((type) => type.friendly_text == event.target.value).short_descr; let new_type = this.reading_types.find((type) => type.friendly_text == event.target.value).short_descr;
@ -92,7 +89,7 @@ class UI {
}) })
} }
]; ];
// this.ui_panel.setIndex("Reading Type", this.reading_types.findIndex((type) => type.short_descr == "PM25")); this.ui_panel.setIndex("Reading Type", this.reading_types.findIndex((type) => type.short_descr == "PM25"));
if(this.tour_enabled) await this.tour.run_once(); if(this.tour_enabled) await this.tour.run_once();
} }