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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-12-08 11:46:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-12-08 11:46:21 +0300
commit690345a826544aec7a30b1d39966d867d093a8d1 (patch)
treeb49bca28496bc5f4e22618c375444f6b5f4b3092 /source
parent7ba2b37a8a7837695c74d354f44084c2f917adba (diff)
Cleanup: spelling
Diffstat (limited to 'source')
-rw-r--r--source/blender/windowmanager/intern/wm_event_system.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index 3de34e7ca3f..35542410cd8 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -3508,7 +3508,8 @@ bool WM_event_is_tablet(const struct wmEvent *event)
#ifdef WITH_INPUT_IME
/* most os using ctrl/oskey + space to switch ime, avoid added space */
-bool WM_event_is_ime_switch(const struct wmEvent *event) {
+bool WM_event_is_ime_switch(const struct wmEvent *event)
+{
return event->val == KM_PRESS && event->type == SPACEKEY &&
(event->ctrl || event->oskey || event->shift || event->alt);
}