[Bf-blender-cvs] [4ca34e6e345] master: UI: Fix small naming inconsistency in the UV Editor View menu

William Reynish noreply at git.blender.org
Sun Jun 2 20:30:57 CEST 2019


Commit: 4ca34e6e34570d77043788e4077e5c83a7a61228
Author: William Reynish
Date:   Sun Jun 2 20:30:55 2019 +0200
Branches: master
https://developer.blender.org/rB4ca34e6e34570d77043788e4077e5c83a7a61228

UI: Fix small naming inconsistency in the UV Editor View menu

Now it's consistent with 3D View

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index e8b997ad1ec..6af3f8865ca 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -108,10 +108,10 @@ class IMAGE_MT_view(Menu):
         layout.separator()
 
         if show_uvedit:
-            layout.operator("image.view_selected")
+            layout.operator("image.view_selected", text="Frame Selected")
 
-        layout.operator("image.view_all")
-        layout.operator("image.view_all", text="View Fit").fit_view = True
+        layout.operator("image.view_all", text="Frame All")
+        layout.operator("image.view_all", text="Frame All Fit").fit_view = True
 
         layout.separator()



More information about the Bf-blender-cvs mailing list