colorpicker margin bug fixed
This commit is contained in:
parent
ad34c1e544
commit
9d224ac429
|
@ -66,7 +66,7 @@ void ColorPicker::_notification(int p_what) {
|
||||||
} break;
|
} break;
|
||||||
case NOTIFICATION_PARENTED: {
|
case NOTIFICATION_PARENTED: {
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 4; i++) {
|
||||||
set_margin((Margin)i, get_theme_constant("margin"));
|
set_margin((Margin)i, get_margin((Margin)i) + get_theme_constant("margin"));
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
case NOTIFICATION_VISIBILITY_CHANGED: {
|
case NOTIFICATION_VISIBILITY_CHANGED: {
|
||||||
|
|
Loading…
Reference in New Issue