1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-31 23:21:54 +00:00
This commit is contained in:
J. Nick Koston
2025-10-30 14:07:49 -05:00
parent 54c536cbe2
commit c02d316866

View File

@@ -80,7 +80,7 @@ void SelectCall::perform() {
target_index = 0;
} else if (this->operation_ == SELECT_OP_LAST) {
target_index = options.size() - 1;
} else if (this->operation_ == SELECT_OP_NEXT || this->operation_ == SELECT_OP_PREVIOUS) {
} else { // SELECT_OP_NEXT or SELECT_OP_PREVIOUS
auto cycle = this->cycle_;
ESP_LOGD(TAG, "'%s' - Selecting %s, with%s cycling", name, this->operation_ == SELECT_OP_NEXT ? "next" : "previous",
cycle ? "" : "out");