Merge pull request #26157 from YeldhamDev/splitcont_update_check

Make 'SplitContainer' update drawing only if actually needs to
This commit is contained in:
Rémi Verschelde 2019-02-23 10:36:09 +01:00 committed by GitHub
commit a291c837f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,6 +167,7 @@ void SplitContainer::_notification(int p_what) {
case NOTIFICATION_MOUSE_EXIT: {
mouse_inside = false;
if (get_constant("autohide"))
update();
} break;
case NOTIFICATION_DRAW: {
@ -174,7 +175,7 @@ void SplitContainer::_notification(int p_what) {
if (!_getch(0) || !_getch(1))
return;
if (collapsed || (!mouse_inside && get_constant("autohide")))
if (collapsed || (!dragging && !mouse_inside && get_constant("autohide")))
return;
if (dragger_visibility != DRAGGER_VISIBLE)
@ -248,6 +249,7 @@ void SplitContainer::_gui_input(const Ref<InputEvent> &p_event) {
if (mouse_inside != mouse_inside_state) {
mouse_inside = mouse_inside_state;
if (get_constant("autohide"))
update();
}