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/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-03-06 16:05:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-06 16:19:01 +0300
commit0b16b63d87e8a217cd73ec3220b4cb9af69ac355 (patch)
tree1b790450c0257b57b4f67e061a672f8628ac17dd /intern
parent8bb0ac27dc1483b0d919ad68f2f7aaa21f5fa6f8 (diff)
Cleanup: spelling
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_SystemX11.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp
index 05c311077f9..b0c35ce6546 100644
--- a/intern/ghost/intern/GHOST_SystemX11.cpp
+++ b/intern/ghost/intern/GHOST_SystemX11.cpp
@@ -696,8 +696,8 @@ bool GHOST_SystemX11::processEvents(bool waitForEvent)
continue;
}
#endif
- /* when using autorepeat, some keypress events can actually come *after* the
- * last keyrelease. The next code takes care of that */
+ /* When using auto-repeat, some key-press events can actually come *after* the
+ * last key-release. The next code takes care of that. */
if (xevent.type == KeyRelease) {
m_last_release_keycode = xevent.xkey.keycode;
m_last_release_time = xevent.xkey.time;