Skip to content

Commit

Permalink
Delay in Strava Upload and Treadmill Pace Coloring Off #2933
Browse files Browse the repository at this point in the history
  • Loading branch information
cagnulein committed Dec 26, 2024
1 parent 5581e1c commit 268be8e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/homeform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1563,6 +1563,12 @@ void homeform::sortTiles() {
target_power->setGridId(i);
dataList.append(target_power);
}

if (settings.value(QZSettings::tile_target_zone_enabled, false).toBool() &&
settings.value(QZSettings::tile_target_zone_order, 24).toInt() == i) {
target_zone->setGridId(i);
dataList.append(target_zone);
}
}
} else if (bluetoothManager->device()->deviceType() == bluetoothdevice::BIKE) {
for (int i = 0; i < 100; i++) {
Expand Down

0 comments on commit 268be8e

Please sign in to comment.