Fix T95336: Wrong tooltip for Show Only on Keyframed checkbox

The "Paint" mode is wrong, must be "Draw"
This commit is contained in:
Antonio Vazquez 2022-01-30 23:12:12 +01:00
parent 1f7013fb90
commit a04d0de039
Notes: blender-bot 2023-02-13 16:22:04 +01:00
Referenced by issue #95336, Grease Pencil: Tool Tip Description for Layers > Display > "Show Only on Keyframed" checkbox not correct
1 changed files with 1 additions and 1 deletions

View File

@ -2228,7 +2228,7 @@ static void rna_def_gpencil_layer(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_solo_mode", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_LAYER_SOLO_MODE);
RNA_def_property_ui_text(
prop, "Solo Mode", "In Paint mode display only layers with keyframe in current frame");
prop, "Solo Mode", "In Draw Mode only display layers with keyframe in current frame");
RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
/* Layer is used as Ruler. */