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>2014-01-30 08:28:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-30 08:28:39 +0400
commit9598990b9b6ef4fb129943ea1288d9087dff9f9b (patch)
treee4f1bf1dd4e4dce37d458e66c26b565d1b846c7e /release
parentb3bb50f6879d57f4cfd531401b58da671b986d6e (diff)
UI API: don't use a text label when icon_only is set
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 9b3c2267aba..c341d855ccc 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -544,7 +544,7 @@ class IMAGE_PT_view_histogram(Panel):
layout.template_histogram(sima.scopes, "histogram")
row = layout.row(align=True)
- row.prop(hist, "mode", icon_only=True, expand=True)
+ row.prop(hist, "mode", expand=True)
row.prop(hist, "show_line", text="")