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:
authorWilliam Reynish <william@reynish.com>2009-08-25 03:27:07 +0400
committerWilliam Reynish <william@reynish.com>2009-08-25 03:27:07 +0400
commit8ed64f785491c10467e83584caecc13ec5199aaf (patch)
tree30d8ee2b03467064da29b71dec7aed129958a627
parent7793848db223e7128bb24f9dfda418b029fab2ef (diff)
Tiny tweaks to Display panel in image editor
-rw-r--r--release/ui/space_image.py23
1 files changed, 15 insertions, 8 deletions
diff --git a/release/ui/space_image.py b/release/ui/space_image.py
index aa43b14b974..8dc016f55b7 100644
--- a/release/ui/space_image.py
+++ b/release/ui/space_image.py
@@ -317,7 +317,7 @@ class IMAGE_PT_game_properties(bpy.types.Panel):
class IMAGE_PT_view_properties(bpy.types.Panel):
__space_type__ = 'IMAGE_EDITOR'
__region_type__ = 'UI'
- __label__ = "View Properties"
+ __label__ = "Display"
def poll(self, context):
sima = context.space_data
@@ -335,26 +335,33 @@ class IMAGE_PT_view_properties(bpy.types.Panel):
col = split.column()
if ima:
- col.itemR(ima, "display_aspect")
+ col.itemR(ima, "display_aspect", text="Aspect Ratio")
col = split.column()
+ col.itemL(text="Coordinates:")
col.itemR(sima, "draw_repeated", text="Repeat")
if show_uvedit:
col.itemR(uvedit, "normalized_coordinates", text="Normalized")
elif show_uvedit:
+ col.itemL(text="Coordinates:")
col.itemR(uvedit, "normalized_coordinates", text="Normalized")
if show_uvedit:
col = layout.column()
row = col.row()
row.itemR(uvedit, "edge_draw_type", expand=True)
- row = col.row()
- row.itemR(uvedit, "draw_smooth_edges", text="Smooth")
- row.itemR(uvedit, "draw_modified_edges", text="Modified")
+
+ split = layout.split()
- row = col.row()
- row.itemR(uvedit, "draw_stretch", text="Stretch")
- row.itemR(uvedit, "draw_stretch_type", text="")
+ col = split.column()
+ col.itemR(uvedit, "draw_stretch", text="Stretch")
+ sub = col.column()
+ sub.active = uvedit.draw_stretch
+ sub.row().itemR(uvedit, "draw_stretch_type", expand=True)
+
+ col = split.column()
+ col.itemR(uvedit, "draw_smooth_edges", text="Smooth")
+ col.itemR(uvedit, "draw_modified_edges", text="Modified")
#col.itemR(uvedit, "draw_edges")
#col.itemR(uvedit, "draw_faces")