Skip to content

Commit

Permalink
change items(speed)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishizuka committed Jan 17, 2024
1 parent ade6ccd commit b5ca4ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/pyqt/pyqt_multiscan_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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])
)
Expand Down

0 comments on commit b5ca4ee

Please sign in to comment.