Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_userdef.c
| Context not available. | |||||
| RNA_def_property_ui_text(prop, "Tab Colors", ""); | RNA_def_property_ui_text(prop, "Tab Colors", ""); | ||||
| RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | ||||
| prop = RNA_def_property(srna, "text_cursor", PROP_FLOAT, PROP_COLOR_GAMMA); | |||||
| RNA_def_property_float_sdna(prop, NULL, "text_cursor"); | |||||
| RNA_def_property_array(prop, 3); | |||||
| RNA_def_property_ui_text( | |||||
| prop, "Text Cursor", "Color of the interface widgets text cursor."); | |||||
| RNA_def_property_update(prop, 0, "rna_userdef_theme_update"); | |||||
| prop = RNA_def_property(srna, "menu_shadow_fac", PROP_FLOAT, PROP_FACTOR); | prop = RNA_def_property(srna, "menu_shadow_fac", PROP_FLOAT, PROP_FACTOR); | ||||
| RNA_def_property_ui_text(prop, "Menu Shadow Strength", "Blending factor for menu shadows"); | RNA_def_property_ui_text(prop, "Menu Shadow Strength", "Blending factor for menu shadows"); | ||||
| RNA_def_property_range(prop, 0.01f, 1.0f); | RNA_def_property_range(prop, 0.01f, 1.0f); | ||||
| Context not available. | |||||