Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-07-07 05:55:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-07 06:42:46 +0300
commit5bbbc98471a5b8c8384789a4f88d112d003a6350 (patch)
tree4b5f3ab050b910c4f2dd7ff59115ae0963881ca0 /source/blender/windowmanager
parent63a8b3b9720cf2660cb7a6cd431fdd3014534c4a (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_event_query.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_event_query.c b/source/blender/windowmanager/intern/wm_event_query.c
index 905b0f7b128..e7603a02cff 100644
--- a/source/blender/windowmanager/intern/wm_event_query.c
+++ b/source/blender/windowmanager/intern/wm_event_query.c
@@ -484,7 +484,10 @@ int WM_event_absolute_delta_y(const struct wmEvent *event)
* \{ */
#ifdef WITH_INPUT_IME
-/* most os using ctrl/oskey + space to switch ime, avoid added space */
+/**
+ * Most OS's use `Ctrl+Space` / `OsKey+Space` to switch IME,
+ * so don't type in the space character.
+ */
bool WM_event_is_ime_switch(const struct wmEvent *event)
{
return event->val == KM_PRESS && event->type == EVT_SPACEKEY &&