mirror of
https://github.com/godotengine/godot.git
synced 2025-02-01 14:45:22 +00:00
Fixed issues with slider focus and scroll input
This commit is contained in:
parent
78e223569b
commit
707cf278a5
@ -73,8 +73,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());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user