Compare commits

..

1 Commits

Author SHA1 Message Date
Mikołaj Lubiak
56a3a80b8d
Merge 2887beff5b into 1d40687a40 2024-10-18 14:18:25 +02:00

View File

@ -421,7 +421,7 @@ public:
bool Focusable() const final { return true; } bool Focusable() const final { return true; }
void SetValue(Ref<T> val) { void SetValue(Ref<T> val) {
value_() = util::clamp(val(), min_(), max_()); value_() = val();
callback_(value_()); callback_(value_());
} }