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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-09-03 10:44:34 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-09-03 10:44:34 +0400
commitf71da49bb85a49c6a6a5b9807963ca8db762b7c3 (patch)
tree465b1b68d484ef0bf89b805a3b69fe7c976ffa72 /release
parent8bda880b57acb79a9273587a5d8d42cf351d0e77 (diff)
Fix T41695: No label in UV/Image editor waveform mode
That's indeed rather creepy to show only icon for the enum where all the elements have the same exact icon.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 310bbb33cbc..8fd0ded17f7 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -1070,7 +1070,7 @@ class IMAGE_PT_view_waveform(Panel):
layout.template_waveform(sima, "scopes")
row = layout.split(percentage=0.75)
row.prop(sima.scopes, "waveform_alpha")
- row.prop(sima.scopes, "waveform_mode", icon_only=True)
+ row.prop(sima.scopes, "waveform_mode", text="")
class IMAGE_PT_view_vectorscope(Panel):