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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Vazquez <venomgfx@gmail.com>2012-10-03 21:31:38 +0400
committerPablo Vazquez <venomgfx@gmail.com>2012-10-03 21:31:38 +0400
commit762cffcfdca583f6911ad8ca2f0bb4f30004dfb5 (patch)
tree0a1bd77fb632cdd6a7873f2e51fad768160d1c10 /space_view3d_screencast_keys.py
parent1a507bbdc15c016dc0a6f36f78f5ca5bda709d69 (diff)
Screencast Keys Addon:
Update to 2.64, and make the ticker slower to not eat CPUs.
Diffstat (limited to 'space_view3d_screencast_keys.py')
-rw-r--r--space_view3d_screencast_keys.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/space_view3d_screencast_keys.py b/space_view3d_screencast_keys.py
index 01077bab..b20c551c 100644
--- a/space_view3d_screencast_keys.py
+++ b/space_view3d_screencast_keys.py
@@ -22,7 +22,7 @@ bl_info = {
'name': "Screencast Keys",
'author': 'Paulo Gomes, Bart Crouch, John E. Herrenyo, Gaia Clary, Pablo Vazquez',
'version': (1, 7),
- 'blender': (2, 6, 3),
+ 'blender': (2, 6, 4),
'location': '3D View > Properties Panel > Screencast Keys',
'warning': '',
'description': 'Display keys pressed in the 3D View, '\
@@ -601,7 +601,7 @@ class ScreencastKeysStatus(bpy.types.Operator):
(self, context), 'POST_PIXEL')
self._handle = context.region.callback_add(draw_callback_px_text,
(self, context), 'POST_PIXEL')
- self._timer = context.window_manager.event_timer_add(0.025,
+ self._timer = context.window_manager.event_timer_add(0.075,
context.window)
ScreencastKeysStatus.overall_time.insert(0, time.time())
context.window_manager.modal_handler_add(self)