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
This commit is contained in:
IREXTIA
2025-02-19 21:51:55 +01:00
committed by Pablo Vazquez
parent 2e90aace03
commit 24d9eedc15

View File

@@ -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()