UI: rename Border to Box Select
Missed in previous renaming commits.
This commit is contained in:
@@ -361,7 +361,7 @@ class DOPESHEET_MT_select(Menu):
|
||||
|
||||
layout.separator()
|
||||
layout.operator("action.select_box").axis_range = False
|
||||
layout.operator("action.select_box", text="Border Axis Range").axis_range = True
|
||||
layout.operator("action.select_box", text="Box Select (Axis Range)").axis_range = True
|
||||
|
||||
layout.operator("action.select_circle")
|
||||
|
||||
|
||||
@@ -169,10 +169,10 @@ class GRAPH_MT_select(Menu):
|
||||
props = layout.operator("graph.select_box")
|
||||
props.axis_range = False
|
||||
props.include_handles = False
|
||||
props = layout.operator("graph.select_box", text="Border Axis Range")
|
||||
props = layout.operator("graph.select_box", text="Box Select (Axis Range)")
|
||||
props.axis_range = True
|
||||
props.include_handles = False
|
||||
props = layout.operator("graph.select_box", text="Border (Include Handles)")
|
||||
props = layout.operator("graph.select_box", text="Box Select (Include Handles)")
|
||||
props.axis_range = False
|
||||
props.include_handles = True
|
||||
|
||||
|
||||
@@ -126,7 +126,7 @@ class NLA_MT_select(Menu):
|
||||
|
||||
layout.separator()
|
||||
layout.operator("nla.select_box").axis_range = False
|
||||
layout.operator("nla.select_box", text="Border Axis Range").axis_range = True
|
||||
layout.operator("nla.select_box", text="Box Select (Axis Range)").axis_range = True
|
||||
|
||||
layout.separator()
|
||||
props = layout.operator("nla.select_leftright", text="Before Current Frame")
|
||||
|
||||
Reference in New Issue
Block a user