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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-06-13 10:42:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-06-13 10:42:12 +0400
commitd35d04a78961946145be256ed1ff45342f7633b8 (patch)
tree495c965c07bb372e03e42d74d6ed17d813014432 /release
parentfe329792b4087add019508b0cb02aed0034c3651 (diff)
text live_edit feature useful for UI scripts (run python scripts on every keystroke, careful with the os module)
http://www.graphicall.org/ftp/ideasman42/realtime_ui.ogv current kerning makes this a bit cryptic.
Diffstat (limited to 'release')
-rw-r--r--release/ui/space_text.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/ui/space_text.py b/release/ui/space_text.py
index 5c6c5c0d21b..8daca086111 100644
--- a/release/ui/space_text.py
+++ b/release/ui/space_text.py
@@ -66,6 +66,7 @@ class TEXT_PT_properties(bpy.types.Panel):
flow.itemR(st, "line_numbers", icon=ICON_LINENUMBERS_OFF)
flow.itemR(st, "word_wrap", icon=ICON_WORDWRAP_OFF)
flow.itemR(st, "syntax_highlight", icon=ICON_SYNTAX_OFF)
+ flow.itemR(st, "live_edit")
flow = layout.column_flow()
flow.itemR(st, "font_size")