Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
GyverLibs committed Dec 28, 2024
1 parent 570e82a commit 4620f40
Show file tree
Hide file tree
Showing 2 changed files with 175 additions and 175 deletions.
7 changes: 3 additions & 4 deletions src/core/builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -352,11 +352,10 @@ class Builder {

(*p)('}');
p->checkLen();
bool set = _isSet(id_min, value_min);
set |= _isSet(id_max, value_max);
return set;
}
return false;
bool set = _isSet(id_min, value_min);
set |= _isSet(id_max, value_max);
return set;
}
bool Slider2(size_t id_min, size_t id_max, Text label, float min, float max, float step, Text unit, AnyPtr value_min, AnyPtr value_max, Colors color) {
return Slider2(id_min, id_max, label, min, max, step, unit, value_min, value_max, (uint32_t)color);
Expand Down
Loading

0 comments on commit 4620f40

Please sign in to comment.