diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-15 10:39:44 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-15 10:39:44 +0200 |
commit | 0b30785bca3255b9c5a9cbcc381b584209b5044b (patch) | |
tree | 0cbd8e49704bf7fe53c39dd181341bd3d68bb079 /core/input/input_event.cpp | |
parent | a6e79226c1ac9da3dea0183a066857ebdb2275e0 (diff) | |
parent | 40ae917db8b057a02de730a1ee62cc4092a88da1 (diff) | |
download | redot-engine-0b30785bca3255b9c5a9cbcc381b584209b5044b.tar.gz |
Merge pull request #75438 from ronyeh/typo
Fix typo on "autoremapping".
Diffstat (limited to 'core/input/input_event.cpp')
-rw-r--r-- | core/input/input_event.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/input/input_event.cpp b/core/input/input_event.cpp index 6010c2a2b4..e547b04d0b 100644 --- a/core/input/input_event.cpp +++ b/core/input/input_event.cpp @@ -201,7 +201,7 @@ bool InputEventWithModifiers::is_alt_pressed() const { } void InputEventWithModifiers::set_ctrl_pressed(bool p_enabled) { - ERR_FAIL_COND_MSG(command_or_control_autoremap, "Command/Control autoremaping is enabled, cannot set Control directly!"); + ERR_FAIL_COND_MSG(command_or_control_autoremap, "Command or Control autoremapping is enabled, cannot set Control directly!"); ctrl_pressed = p_enabled; emit_changed(); } @@ -211,7 +211,7 @@ bool InputEventWithModifiers::is_ctrl_pressed() const { } void InputEventWithModifiers::set_meta_pressed(bool p_enabled) { - ERR_FAIL_COND_MSG(command_or_control_autoremap, "Command/Control autoremaping is enabled, cannot set Meta directly!"); + ERR_FAIL_COND_MSG(command_or_control_autoremap, "Command or Control autoremapping is enabled, cannot set Meta directly!"); meta_pressed = p_enabled; emit_changed(); } |