Fixed issues with slider focus and scroll input

(cherry picked from commit 707cf278a5)
This commit is contained in:
Eric M 2020-05-21 21:26:46 +10:00 committed by Rémi Verschelde
parent 8a7d0d3ce0
commit 3b2c43312c

View file

@ -74,8 +74,10 @@ void Slider::_gui_input(Ref<InputEvent> p_event) {
}
} else if (scrollable) {
if (mb->is_pressed() && mb->get_button_index() == BUTTON_WHEEL_UP) {
grab_focus();
set_value(get_value() + get_step());
} else if (mb->is_pressed() && mb->get_button_index() == BUTTON_WHEEL_DOWN) {
grab_focus();
set_value(get_value() - get_step());
}
}