forked from bartvdbraak/blender
A few minor UI message fixes...
This commit is contained in:
parent
9ed75681b6
commit
fd2f05be44
@ -4055,7 +4055,7 @@ void NODE_OT_join(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Join Nodes";
|
||||
ot->description = "Attaches selected nodes to a new common frame";
|
||||
ot->description = "Attach selected nodes to a new common frame";
|
||||
ot->idname = "NODE_OT_join";
|
||||
|
||||
/* api callbacks */
|
||||
@ -4125,7 +4125,7 @@ void NODE_OT_attach(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Attach Nodes";
|
||||
ot->description = "Attaches active node to a frame";
|
||||
ot->description = "Attach active node to a frame";
|
||||
ot->idname = "NODE_OT_attach";
|
||||
|
||||
/* api callbacks */
|
||||
@ -4194,7 +4194,7 @@ void NODE_OT_detach(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Detach Nodes";
|
||||
ot->description = "Detaches selected nodes from parents";
|
||||
ot->description = "Detach selected nodes from parents";
|
||||
ot->idname = "NODE_OT_detach";
|
||||
|
||||
/* api callbacks */
|
||||
|
@ -4007,7 +4007,8 @@ static void rna_def_composite_nodetree(BlenderRNA *brna)
|
||||
|
||||
prop = RNA_def_property(srna, "chunk_size", PROP_INT, PROP_NONE);
|
||||
RNA_def_property_int_sdna(prop, NULL, "chunksize");
|
||||
RNA_def_property_ui_text(prop, "Chunksize", "Max size of a tile. Smaller values gives better distribution of multiple threads, but more overhead");
|
||||
RNA_def_property_ui_text(prop, "Chunksize", "Max size of a tile (smaller values gives better distribution "
|
||||
"of multiple threads, but more overhead)");
|
||||
RNA_def_property_range(prop, 32, 1024);
|
||||
|
||||
prop = RNA_def_property(srna, "use_opencl", PROP_BOOLEAN, PROP_NONE);
|
||||
|
@ -922,7 +922,7 @@ void WM_operator_properties_mouse_select(wmOperatorType *ot)
|
||||
{
|
||||
RNA_def_boolean(ot->srna, "extend", 0, "Extend", "Extend selection instead of deselecting everything first");
|
||||
RNA_def_boolean(ot->srna, "deselect", 0, "Deselect", "Remove from selection");
|
||||
RNA_def_boolean(ot->srna, "toggle", 0, "Toggle Selection", "Toggles selection");
|
||||
RNA_def_boolean(ot->srna, "toggle", 0, "Toggle Selection", "Toggle the selection");
|
||||
}
|
||||
|
||||
void WM_operator_properties_gesture_straightline(wmOperatorType *ot, int cursor)
|
||||
|
Loading…
Reference in New Issue
Block a user