You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Make BaseButtons' shortcut feedback timers internal
This commit is contained in:
@@ -452,7 +452,7 @@ void BaseButton::shortcut_input(const Ref<InputEvent> &p_event) {
|
|||||||
if (shortcut_feedback_timer == nullptr) {
|
if (shortcut_feedback_timer == nullptr) {
|
||||||
shortcut_feedback_timer = memnew(Timer);
|
shortcut_feedback_timer = memnew(Timer);
|
||||||
shortcut_feedback_timer->set_one_shot(true);
|
shortcut_feedback_timer->set_one_shot(true);
|
||||||
add_child(shortcut_feedback_timer);
|
add_child(shortcut_feedback_timer, false, INTERNAL_MODE_BACK);
|
||||||
shortcut_feedback_timer->set_wait_time(GLOBAL_GET_CACHED(double, "gui/timers/button_shortcut_feedback_highlight_time"));
|
shortcut_feedback_timer->set_wait_time(GLOBAL_GET_CACHED(double, "gui/timers/button_shortcut_feedback_highlight_time"));
|
||||||
shortcut_feedback_timer->connect("timeout", callable_mp(this, &BaseButton::_shortcut_feedback_timeout));
|
shortcut_feedback_timer->connect("timeout", callable_mp(this, &BaseButton::_shortcut_feedback_timeout));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user