diff options
author | Eric M <itsjusteza@gmail.com> | 2022-11-18 18:18:31 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2022-11-18 18:18:31 +1000 |
commit | da1589dae670e2c04f1d14fc5a96162b797f9a22 (patch) | |
tree | 59a6287b151bfd22ca4dd56e3021e18f42f99ee4 /editor/action_map_editor.cpp | |
parent | e8f9cd8ac5cf3e511e02d78a5497d204ca7e8308 (diff) | |
download | redot-engine-da1589dae670e2c04f1d14fc5a96162b797f9a22.tar.gz |
Refactor `get_event_text` to a static method, remove high deadzone from event configuration.
* `get_event_text` and `get_device_string` are now static methods (they always could have been)
* Applied 90% deadzone on joypad motion inputs in the configurator had the effect of ignoring most joypad motion inputs. Low ones do not need to be filtered out as JoypadMotion is only considered 'pressed' if it as above 50% strength - and that works well.
Diffstat (limited to 'editor/action_map_editor.cpp')
-rw-r--r-- | editor/action_map_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/action_map_editor.cpp b/editor/action_map_editor.cpp index 3b9d6c18eb..c376d5434f 100644 --- a/editor/action_map_editor.cpp +++ b/editor/action_map_editor.cpp @@ -443,7 +443,7 @@ void ActionMapEditor::update_action_list(const Vector<ActionInfo> &p_action_info TreeItem *event_item = action_tree->create_item(action_item); // First Column - Text - event_item->set_text(0, event_config_dialog->get_event_text(event, true)); + event_item->set_text(0, EventListenerLineEdit::get_event_text(event, true)); event_item->set_meta("__event", event); event_item->set_meta("__index", evnt_idx); |