fix [#36043] Missing Tooltip for Excluded Paths field of Auto Run Python Scripts in User Preferences -> File
also select more/less were flipped for mesh menu compared to everywhere else.
This commit is contained in:
@@ -617,8 +617,8 @@ class VIEW3D_MT_select_edit_mesh(Menu):
|
||||
|
||||
layout.separator()
|
||||
|
||||
layout.operator("mesh.select_less", text="Less")
|
||||
layout.operator("mesh.select_more", text="More")
|
||||
layout.operator("mesh.select_less", text="Less")
|
||||
|
||||
layout.separator()
|
||||
|
||||
|
||||
@@ -1880,6 +1880,7 @@ static void WM_OT_userpref_autoexec_path_add(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Add Autoexec Path";
|
||||
ot->idname = "WM_OT_userpref_autoexec_path_add";
|
||||
ot->description = "Add path to exclude from autoexecution";
|
||||
|
||||
ot->exec = wm_userpref_autoexec_add_exec;
|
||||
ot->poll = WM_operator_winactive;
|
||||
@@ -1901,6 +1902,7 @@ static void WM_OT_userpref_autoexec_path_remove(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Remove Autoexec Path";
|
||||
ot->idname = "WM_OT_userpref_autoexec_path_remove";
|
||||
ot->description = "Remove path to exclude from autoexecution";
|
||||
|
||||
ot->exec = wm_userpref_autoexec_remove_exec;
|
||||
ot->poll = WM_operator_winactive;
|
||||
|
||||
Reference in New Issue
Block a user