diff --git a/libs/ui/source/rich_button.cpp b/libs/ui/source/rich_button.cpp index 0b9ed6be..2b4a0a32 100644 --- a/libs/ui/source/rich_button.cpp +++ b/libs/ui/source/rich_button.cpp @@ -34,7 +34,11 @@ namespace psemek::ui icon_ = std::move(icon); children_[0] = icon_.get(); - if (icon_) icon_->set_parent(this); + if (icon_) + { + icon_->set_parent(this); + icon_->set_downscale(false); + } } }