From 6e3039173d728036f4f1327eb1350bd959fada81 Mon Sep 17 00:00:00 2001 From: Maxime-Cots Date: Fri, 4 Jul 2025 04:33:02 +0200 Subject: [PATCH] UV: Ensure Pie Menu consistency with 3D Viewport "Selected to Grid" and "Cursor to Grid" are now swapped to fix the consistency between UV Snap Pie Menu and 3DView Snap Menu. Resolves #140714 Co-authored-by: Nig3l Pull Request: https://projects.blender.org/blender/blender/pulls/141300 --- scripts/startup/bl_ui/space_image.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/startup/bl_ui/space_image.py b/scripts/startup/bl_ui/space_image.py index f3e510d31f0..3dab64ca002 100644 --- a/scripts/startup/bl_ui/space_image.py +++ b/scripts/startup/bl_ui/space_image.py @@ -633,16 +633,16 @@ class IMAGE_MT_uvs_snap_pie(Menu): layout.operator_context = 'EXEC_REGION_WIN' - pie.operator( - "uv.snap_selected", - text="Selected to Pixels", - icon='RESTRICT_SELECT_OFF', - ).target = 'PIXELS' pie.operator( "uv.snap_cursor", text="Cursor to Pixels", icon='PIVOT_CURSOR', ).target = 'PIXELS' + pie.operator( + "uv.snap_selected", + text="Selected to Pixels", + icon='RESTRICT_SELECT_OFF', + ).target = 'PIXELS' pie.operator( "uv.snap_cursor", text="Cursor to Selected",