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>2009-10-05 19:59:12 +0400
committerThomas Dinges <blender@dingto.org>2009-10-05 19:59:12 +0400
commit4df1e400066b30a0bf378b17b6c2168456920be1 (patch)
tree3ba33d22b7e5d0187c8e2a308c0f4be94b1567eb /release/scripts
parent77b8be6e1390f167bf83f0ca8b10f77fb758d4a0 (diff)
Fixed [#19539] Texture > RGB Factor property doesn't appear in the UI
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/buttons_texture.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/release/scripts/ui/buttons_texture.py b/release/scripts/ui/buttons_texture.py
index 6eab84afc42..c4866edcaaa 100644
--- a/release/scripts/ui/buttons_texture.py
+++ b/release/scripts/ui/buttons_texture.py
@@ -99,8 +99,13 @@ class TEXTURE_PT_colors(TextureButtonsPanel):
layout.template_color_ramp(tex, "color_ramp", expand=True)
split = layout.split()
-
- split.itemR(tex, "rgb_factor", text="Multiply RGB")
+
+ col = split.column()
+ col.itemL(text="RGB Multiply:")
+ sub = col.column(align=True)
+ sub.itemR(tex, "factor_red", text="R")
+ sub.itemR(tex, "factor_green", text="G")
+ sub.itemR(tex, "factor_blue", text="B")
col = split.column()
col.itemL(text="Adjust:")