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>2013-06-27 08:18:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-27 08:18:01 +0400
commit3ff36f928c008aa5c0f114ec0f3b83f1db85766a (patch)
treed9d07ffab5549b3463c0ced71698f510607543c6 /release
parentf3b7a49d5bac0179aeaaf5584fd0051ce5de1cdc (diff)
3d text tool - 'insert lorem' was crashing, also add this to the text menu.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 5e2095354e7..51995ba5012 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2220,6 +2220,10 @@ class VIEW3D_MT_edit_font(Menu):
layout.operator("font.style_toggle", text="Toggle Underline").style = 'UNDERLINE'
layout.operator("font.style_toggle", text="Toggle Small Caps").style = 'SMALL_CAPS'
+ layout.separator()
+
+ layout.operator("font.insert_lorem")
+
class VIEW3D_MT_edit_text_chars(Menu):
bl_label = "Special Characters"