Commit: 7830ec54186e8b05a366775e02c6457eb83814a3
Author: Julian Eisel
Date:   Thu Aug 4 00:26:49 2016 +0200
Branches: master
https://developer.blender.org/rB7830ec54186e8b05a366775e02c6457eb83814a3

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.

===================================================================

M       source/blender/editors/space_action/action_buttons.c
M       source/blender/editors/space_clip/clip_toolbar.c
M       source/blender/editors/space_graph/graph_buttons.c
M       source/blender/editors/space_image/image_buttons.c
M       source/blender/editors/space_logic/logic_buttons.c
M       source/blender/editors/space_nla/nla_buttons.c
M       source/blender/editors/space_node/node_buttons.c
M       source/blender/editors/space_sequencer/sequencer_buttons.c
M       source/blender/editors/space_text/text_header.c
M       source/blender/editors/space_view3d/view3d_buttons.c

===================================================================

diff --git a/source/blender/editors/space_action/action_buttons.c 
b/source/blender/editors/space_action/action_buttons.c
index 063a477..bfc808f 100644
--- a/source/blender/editors/space_action/action_buttons.c
+++ b/source/blender/editors/space_action/action_buttons.c
@@ -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;
diff --git a/source/blender/editors/space_clip/clip_toolbar.c 
b/source/blender/editors/space_clip/clip_toolbar.c
index d31d7f5..b042bbe 100644
--- a/source/blender/editors/space_clip/clip_toolbar.c
+++ b/source/blender/editors/space_clip/clip_toolbar.c
@@ -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 */
diff --git a/source/blender/editors/space_graph/graph_buttons.c 
b/source/blender/editors/space_graph/graph_buttons.c
index 4cbf04f..516814b 100644
--- a/source/blender/editors/space_graph/graph_buttons.c
+++ b/source/blender/editors/space_graph/graph_buttons.c
@@ -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;
diff --git a/source/blender/editors/space_image/image_buttons.c 
b/source/blender/editors/space_image/image_buttons.c
index 38a54ad..b9d98df 100644
--- a/source/blender/editors/space_image/image_buttons.c
+++ b/source/blender/editors/space_image/image_buttons.c
@@ -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;
diff --git a/source/blender/editors/space_logic/logic_buttons.c 
b/source/blender/editors/space_logic/logic_buttons.c
index 12c7ef3..e5eee21 100644
--- a/source/blender/editors/space_logic/logic_buttons.c
+++ b/source/blender/editors/space_logic/logic_buttons.c
@@ -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;
diff --git a/source/blender/editors/space_nla/nla_buttons.c 
b/source/blender/editors/space_nla/nla_buttons.c
index cbdc476..9032d28 100644
--- a/source/blender/editors/space_nla/nla_buttons.c
+++ b/source/blender/editors/space_nla/nla_buttons.c
@@ -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;
diff --git a/source/blender/editors/space_node/node_buttons.c 
b/source/blender/editors/space_node/node_buttons.c
index 52b0292..f056792 100644
--- a/source/blender/editors/space_node/node_buttons.c
+++ b/source/blender/editors/space_node/node_buttons.c
@@ -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;
diff --git a/source/blender/editors/space_sequencer/sequencer_buttons.c 
b/source/blender/editors/space_sequencer/sequencer_buttons.c
index 86d3fcb..b33a26d 100644
--- a/source/blender/editors/space_sequencer/sequencer_buttons.c
+++ b/source/blender/editors/space_sequencer/sequencer_buttons.c
@@ -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;
diff --git a/source/blender/editors/space_text/text_header.c 
b/source/blender/editors/space_text/text_header.c
index 91665f1..e06a5b5 100644
--- a/source/blender/editors/space_text/text_header.c
+++ b/source/blender/editors/space_text/text_header.c
@@ -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 */
diff --git a/source/blender/editors/space_view3d/view3d_buttons.c 
b/source/blender/editors/space_view3d/view3d_buttons.c
index c52d123..b9c8c98 100644
--- a/source/blender/editors/space_view3d/view3d_buttons.c
+++ b/source/blender/editors/space_view3d/view3d_buttons.c
@@ -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;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to