UI: rename Border to Box Select

Missed in previous renaming commits.
This commit is contained in:
2019-08-06 16:10:48 +10:00
parent 95de738953
commit 4cdc5a12da
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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