[Bf-blender-cvs] [69288daa74c] master: Fix T100674: Use plural for axes option in object properties

Faheim Arslan M noreply at git.blender.org
Wed Jan 25 16:25:35 CET 2023


Commit: 69288daa74c101a0126a154a4c8a741e9c373636
Author: Faheim Arslan M
Date:   Wed Jan 25 16:22:58 2023 +0100
Branches: master
https://developer.blender.org/rB69288daa74c101a0126a154a4c8a741e9c373636

Fix T100674: Use plural for axes option in object properties

This commit fixes T100674, Renamed the "axis" label under viewport display
panel to "axes" in object properties.

Differential Revision: https://developer.blender.org/D16650

===================================================================

M	release/scripts/startup/bl_ui/properties_object.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index 6ab4bb3af69..836ac2dcb75 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -200,7 +200,7 @@ class OBJECT_PT_display(ObjectButtonsPanel, Panel):
 
         col = layout.column(heading="Show")
         col.prop(obj, "show_name", text="Name")
-        col.prop(obj, "show_axis", text="Axis")
+        col.prop(obj, "show_axis", text="Axes")
 
         # Makes no sense for cameras, armatures, etc.!
         # but these settings do apply to dupli instances



More information about the Bf-blender-cvs mailing list