You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 19:41:11 +00:00
Merge pull request #12032 from Grosskopf/seperation-bugfix
Turned around minimum size scaling for seperator. Fixes #12020
This commit is contained in:
@@ -32,7 +32,11 @@
|
||||
Size2 Separator::get_minimum_size() const {
|
||||
|
||||
Size2 ms(3, 3);
|
||||
ms[orientation] = get_constant("separation");
|
||||
if (orientation == VERTICAL) {
|
||||
ms.x = get_constant("separation");
|
||||
} else { // HORIZONTAL
|
||||
ms.y = get_constant("separation");
|
||||
}
|
||||
return ms;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user