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:
authorThomas Dinges <blender@dingto.org>2014-02-12 18:16:43 +0400
committerThomas Dinges <blender@dingto.org>2014-02-12 18:32:25 +0400
commit412e06a2fa6486c6394f1f8295a1552631730484 (patch)
treef066c259cd3346617e8957c2edf27219d04db8d1 /release
parentefc6735a8be3917f53a03c37e5aadb6efc9fb516 (diff)
UI / 3D View Tool Shelf: Avoid redundant "Grease Pencil" label, now that GP has its own tab.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index f7b01bb5a2f..b2f31699718 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -52,8 +52,6 @@ def draw_keyframing_tools(context, layout):
def draw_gpencil_tools(context, layout):
col = layout.column(align=True)
- col.label(text="Grease Pencil:")
-
row = col.row(align=True)
row.operator("gpencil.draw", text="Draw").mode = 'DRAW'
row.operator("gpencil.draw", text="Line").mode = 'DRAW_STRAIGHT'