From 24d9eedc15ff87c69707e13d413f87d216a7b2e9 Mon Sep 17 00:00:00 2001 From: IREXTIA Date: Wed, 19 Feb 2025 21:51:55 +0100 Subject: [PATCH] UI: Rename 'Inverse' to 'Invert' in File/Asset Browser Rename 'Inverse' to 'Invert' for consistency with other select menus. Pull Request: https://projects.blender.org/blender/blender/pulls/134514 --- scripts/startup/bl_ui/space_filebrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/startup/bl_ui/space_filebrowser.py b/scripts/startup/bl_ui/space_filebrowser.py index dbb09499dc2..98d115b2291 100644 --- a/scripts/startup/bl_ui/space_filebrowser.py +++ b/scripts/startup/bl_ui/space_filebrowser.py @@ -529,7 +529,7 @@ class FILEBROWSER_MT_select(FileBrowserMenu, Menu): layout.operator("file.select_all", text="All").action = 'SELECT' layout.operator("file.select_all", text="None").action = 'DESELECT' - layout.operator("file.select_all", text="Inverse").action = 'INVERT' + layout.operator("file.select_all", text="Invert").action = 'INVERT' layout.separator()