Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@


class KeyPressedController(Sofa.Core.Controller):
#This controller monitors key movements.
# Press ctrl and a key to test it!
# This controller monitors key movements.
# Press CTRL + SHIFT + a key to test it!

def __init__(self, *args, **kwargs):
Sofa.Core.Controller.__init__(self, *args, **kwargs)
Expand Down
2 changes: 1 addition & 1 deletion examples/keyEvents.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

class KeyPressedController(Sofa.Core.Controller):
""" This controller monitors key movements.
Press ctrl and a key to test it!
Press CTRL + SHIFT + a key to test it!
"""
def __init__(self, *args, **kwargs):
Sofa.Core.Controller.__init__(self, *args, **kwargs)
Expand Down
Loading