From b5ca4eeff1f739b28a1f1bc96de9532d470fb62c Mon Sep 17 00:00:00 2001 From: hishizuka <12926652+hishizuka@users.noreply.github.com> Date: Wed, 17 Jan 2024 18:38:47 +0900 Subject: [PATCH] change items(speed) --- modules/pyqt/pyqt_multiscan_widget.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/pyqt/pyqt_multiscan_widget.py b/modules/pyqt/pyqt_multiscan_widget.py index 5697ab71..a2fd4981 100644 --- a/modules/pyqt/pyqt_multiscan_widget.py +++ b/modules/pyqt/pyqt_multiscan_widget.py @@ -21,9 +21,9 @@ class MultiScanWidget(ScreenWidget): } item_layout = { - "Power": (0, 0), + "Power(3s)": (0, 0), "HR": (0, 1), - "Time": (0, 2), + "Speed": (0, 2), "HR1": (1, 0), "HR2": (1, 1), "HR3": (1, 2), @@ -85,7 +85,7 @@ def update_display(self): count["PWR"] += 1 for item in self.items: - if item.name in ["HR", "Power", "Time"]: + if item.name in ["Power(3s)", "HR", "Speed"]: item.update_value( eval(self.config.gui.gui_config.G_ITEM_DEF[item.name][1]) )