change seed option menu styling

This commit is contained in:
gymnast86
2026-06-26 11:34:22 -07:00
parent 563944d4a3
commit ec2173db9f
3 changed files with 148 additions and 138 deletions
+3
View File
@@ -222,6 +222,9 @@ bool Pane::focus_closest_child(float posY) {
} else if (posY >= 0.f) {
float closestRightChildDistance = std::numeric_limits<float>::max();
for (const auto& child : children()) {
if (child->disabled()) {
continue;
}
float distance = std::abs(posY - child->root()->GetAbsoluteTop());
if (distance < closestRightChildDistance) {
closestchild = child->root();