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:
authorDalai Felinto <dfelinto@gmail.com>2011-02-27 12:36:29 +0300
committerDalai Felinto <dfelinto@gmail.com>2011-02-27 12:36:29 +0300
commitbc52b996e3fe509760aac9075d239ad56dbdf623 (patch)
treec621685c31e9801d321224ee91945fb67127dbf4 /release/scripts/ui
parentac1b08a9281e7a93064455b89a36715f094da2b0 (diff)
small UI cleanup - "Mouse Cursor" instead of "Show Mouse" and s/subcol/sub and a new line in the end of constraints ui file
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/properties_game.py2
-rw-r--r--release/scripts/ui/properties_object_constraint.py21
2 files changed, 12 insertions, 11 deletions
diff --git a/release/scripts/ui/properties_game.py b/release/scripts/ui/properties_game.py
index 2628870eb4b..5b7268abe8c 100644
--- a/release/scripts/ui/properties_game.py
+++ b/release/scripts/ui/properties_game.py
@@ -356,7 +356,7 @@ class RENDER_PT_game_display(RenderButtonsPanel, bpy.types.Panel):
flow.prop(gs, "show_framerate_profile", text="Framerate and Profile")
flow.prop(gs, "show_physics_visualization", text="Physics Visualization")
flow.prop(gs, "use_deprecation_warnings")
- flow.prop(gs, "show_mouse")
+ flow.prop(gs, "show_mouse", text="Mouse Cursor")
class RENDER_PT_game_sound(RenderButtonsPanel, bpy.types.Panel):
diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py
index 6034fb9e51e..1fa6b5b18a3 100644
--- a/release/scripts/ui/properties_object_constraint.py
+++ b/release/scripts/ui/properties_object_constraint.py
@@ -537,21 +537,21 @@ class ConstraintButtonsPanel():
col = split.column()
col.prop(con, "use_angular_limit_x", text="Angle X")
- subcol = col.column()
- subcol.active =con.use_angular_limit_x
- subcol.prop(con, "limit_angle_max_x", text="")
+ sub = col.column()
+ sub.active = con.use_angular_limit_x
+ sub.prop(con, "limit_angle_max_x", text="")
col = split.column()
col.prop(con, "use_angular_limit_y", text="Angle Y")
- subcol = col.column()
- subcol.active =con.use_angular_limit_y
- subcol.prop(con, "limit_angle_max_y", text="")
+ sub = col.column()
+ sub.active = con.use_angular_limit_y
+ sub.prop(con, "limit_angle_max_y", text="")
col = split.column()
col.prop(con, "use_angular_limit_z", text="Angle Z")
- subcol = col.column()
- subcol.active =con.use_angular_limit_z
- subcol.prop(con, "limit_angle_max_z", text="")
+ sub = col.column()
+ sub.active = con.use_angular_limit_z
+ sub.prop(con, "limit_angle_max_z", text="")
elif con.pivot_type == 'GENERIC_6_DOF':
layout.label(text="Limits:")
@@ -790,4 +790,5 @@ def unregister():
bpy.utils.unregister_module(__name__)
if __name__ == "__main__":
- register() \ No newline at end of file
+ register()
+