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>2018-04-29 18:38:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-29 18:38:17 +0300
commitb5985831e2764a228f41a33c67a91cdb2cb7533b (patch)
tree09c82aa6d792e5d42fad0efda13d574e8f01ed4a /release
parent5cdeae2105184b9e3794b9247d718c4c48958ae8 (diff)
UI: show add/subtract as icons
Saves space in the topbar
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 4cf302e1c93..b0a3be18fad 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -187,9 +187,9 @@ class _draw_left_context_mode:
from .properties_paint_common import UnifiedPaintPanel
- UnifiedPaintPanel.prop_unified_size(layout, context, brush, "size", icon='LOCKED', slider=True, text="Radius")
- UnifiedPaintPanel.prop_unified_strength(layout, context, brush, "strength", icon='LOCKED', slider=True, text="Strength")
- layout.prop(brush, "direction", expand=True)
+ UnifiedPaintPanel.prop_unified_size(layout, context, brush, "size", slider=True, text="Radius")
+ UnifiedPaintPanel.prop_unified_strength(layout, context, brush, "strength", slider=True, text="Strength")
+ layout.prop(brush, "direction", text="", expand=True)
class TOPBAR_PT_redo(Panel):
bl_label = "Redo"