Commit b4698554 authored by Benjamin Mummery's avatar Benjamin Mummery 💻

removed charts and summery pages

parent 5d570ef7
......@@ -620,11 +620,11 @@ class NativeUI(HEVClient, QMainWindow):
# Lines displayed on the charts page should update when the corresponding
# buttons are toggled.
for button in self.widgets.chart_buttons_widget.buttons:
button.ToggleButtonPressed.connect(self.widgets.charts_widget.show_line)
button.ToggleButtonReleased.connect(self.widgets.charts_widget.hide_line)
button.on_press() # Ensure states of the plots match states of buttons.
button.toggle()
# for button in self.widgets.chart_buttons_widget.buttons:
# button.ToggleButtonPressed.connect(self.widgets.charts_widget.show_line)
# button.ToggleButtonReleased.connect(self.widgets.charts_widget.hide_line)
# button.on_press() # Ensure states of the plots match states of buttons.
# button.toggle()
# Plot data and measurements should update on a timer
self.timer = QTimer()
......
......@@ -97,12 +97,12 @@ class Layout:
[
self.layout_mode_startup(),
self.layout_mode_personal("startup_", False),
self.layout_startup_confirmation(),
# self.layout_startup_confirmation(),
],
[
"button_label_modes_mode",
"button_label_modes_personal",
"button_label_modes_summary",
# "button_label_modes_summary",
],
),
"startup_stack",
......@@ -382,9 +382,13 @@ class Layout:
page_settings = SwitchableStackWidget(
self.NativeUI.colors,
self.NativeUI.text,
[tab_charts, tab_info, self.layout_settings_expert()],
[
"button_label_settings_charts",
# tab_charts,
tab_info,
self.layout_settings_expert(),
],
[
# "button_label_settings_charts",
"button_label_settings_info",
"button_label_settings_expert",
],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment