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-06-04 21:30:34 +0400
committerPablo Vazquez <venomgfx@gmail.com>2012-06-04 21:30:34 +0400
commit4a06217c2436f3335de7b2845405dd2572dd6b8d (patch)
treee788df4955493d9f1fdfaeedaa2a30e75a7e10ea /space_view3d_screencast_keys.py
parent1350e4ffac215fba5d5f219a632b4a21473259b6 (diff)
Screencast Keys Addon
- Noticed in some tests[1] that when speeding up even just 2x the maximum fade time felt small, increased max to 10 (but kept softmax as 5)
Diffstat (limited to 'space_view3d_screencast_keys.py')
-rw-r--r--space_view3d_screencast_keys.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/space_view3d_screencast_keys.py b/space_view3d_screencast_keys.py
index d5ea10d1..f2b08ef4 100644
--- a/space_view3d_screencast_keys.py
+++ b/space_view3d_screencast_keys.py
@@ -641,9 +641,10 @@ def init_properties():
scene.screencast_keys_box_width = bpy.props.IntProperty(
name="Box Width",
description="Box default width (resizes with text if needed)",
- default=0,
- min=0,
- max=1024)
+ default = 0,
+ min = 0,
+ max = 2048,
+ soft_max = 1024)
scene.screencast_keys_mouse = bpy.props.EnumProperty(
items=(("none", "No Mouse", "Don't display mouse events"),
("icon", "Icon", "Display graphical representation of "\
@@ -671,7 +672,9 @@ def init_properties():
description = "Time in seconds for keys to last on screen",
default = 3.5,
min = 0.5,
- max = 5.0,
+ max = 10.0,
+ soft_max = 5.0,
+ step = 10,
subtype = 'TIME')
scene.screencast_keys_show_operator = bpy.props.BoolProperty(
name="Display Last Operator",