UI: Correct tooltips for properties region toggle OP
Now all consistent and using term "properties region" instead of "properties panel". Ideally we had a more generic operator for all those. Fixes T49006.
This commit is contained in:
@@ -122,7 +122,7 @@ void ACTION_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Properties";
|
||||
ot->idname = "ACTION_OT_properties";
|
||||
ot->description = "Toggle display properties panel";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
|
||||
ot->exec = action_properties_toggle_exec;
|
||||
ot->poll = ED_operator_action_active;
|
||||
|
||||
@@ -106,7 +106,7 @@ void CLIP_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Properties";
|
||||
ot->description = "Toggle clip properties panel";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
ot->idname = "CLIP_OT_properties";
|
||||
|
||||
/* api callbacks */
|
||||
|
||||
@@ -1067,7 +1067,7 @@ void GRAPH_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Properties";
|
||||
ot->idname = "GRAPH_OT_properties";
|
||||
ot->description = "Toggle display properties panel";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
|
||||
ot->exec = graph_properties_toggle_exec;
|
||||
ot->poll = ED_operator_graphedit_active;
|
||||
|
||||
@@ -1330,7 +1330,7 @@ void IMAGE_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Properties";
|
||||
ot->idname = "IMAGE_OT_properties";
|
||||
ot->description = "Toggle display properties panel";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
|
||||
ot->exec = image_properties_toggle_exec;
|
||||
ot->poll = ED_operator_image_active;
|
||||
|
||||
@@ -63,7 +63,7 @@ static int logic_properties_toggle_exec(bContext *C, wmOperator *UNUSED(op))
|
||||
void LOGIC_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Properties";
|
||||
ot->description = "Toggle display properties panel";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
ot->idname = "LOGIC_OT_properties";
|
||||
|
||||
ot->exec = logic_properties_toggle_exec;
|
||||
|
||||
@@ -567,7 +567,7 @@ void NLA_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Properties";
|
||||
ot->idname = "NLA_OT_properties";
|
||||
ot->description = "Toggle display properties panel";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
|
||||
ot->exec = nla_properties_toggle_exec;
|
||||
ot->poll = ED_operator_nla_active;
|
||||
|
||||
@@ -222,7 +222,7 @@ static int node_properties_poll(bContext *C)
|
||||
void NODE_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Properties";
|
||||
ot->description = "Toggles the properties panel display";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
ot->idname = "NODE_OT_properties";
|
||||
|
||||
ot->exec = node_properties_toggle_exec;
|
||||
|
||||
@@ -94,7 +94,7 @@ void SEQUENCER_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Properties";
|
||||
ot->idname = "SEQUENCER_OT_properties";
|
||||
ot->description = "Open sequencer properties panel";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
|
||||
ot->exec = sequencer_properties_toggle_exec;
|
||||
ot->poll = ED_operator_sequencer_active;
|
||||
|
||||
@@ -92,7 +92,7 @@ void TEXT_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Properties";
|
||||
ot->description = "Toggle text properties panel";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
ot->idname = "TEXT_OT_properties";
|
||||
|
||||
/* api callbacks */
|
||||
|
||||
@@ -1206,7 +1206,7 @@ static int view3d_properties_toggle_exec(bContext *C, wmOperator *UNUSED(op))
|
||||
void VIEW3D_OT_properties(wmOperatorType *ot)
|
||||
{
|
||||
ot->name = "Properties";
|
||||
ot->description = "Toggles the properties panel display";
|
||||
ot->description = "Toggle the properties region visibility";
|
||||
ot->idname = "VIEW3D_OT_properties";
|
||||
|
||||
ot->exec = view3d_properties_toggle_exec;
|
||||
|
||||
Reference in New Issue
Block a user