Merge pull request #36235 from YeldhamDev/colorpicker_presets_hide_fix

Fix hiding ColorPicker's presets not fully hiding its controls
This commit is contained in:
Rémi Verschelde 2020-02-15 12:04:16 +01:00 committed by GitHub
commit 7b6251d188
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -667,6 +667,7 @@ void ColorPicker::set_presets_visible(bool p_visible) {
presets_visible = p_visible;
preset_separator->set_visible(p_visible);
preset_container->set_visible(p_visible);
preset_container2->set_visible(p_visible);
}
bool ColorPicker::are_presets_visible() const {