From 24ef1cf07e2f653ac12856b5eeba177305c1d43b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sun, 1 Mar 2020 16:12:42 +0100 Subject: Fix show large cursor preference not being fully removed and causing warnings --- source/blender/makesrna/intern/rna_userdef.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'source/blender/makesrna/intern/rna_userdef.c') diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index dfa7bf90bb6..566305ad1c7 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -4352,11 +4352,6 @@ static void rna_def_userdef_view(BlenderRNA *brna) prop, "Display Object Info", "Display objects name and frame number in 3D view"); RNA_def_property_update(prop, 0, "rna_userdef_update"); - prop = RNA_def_property(srna, "show_large_cursors", PROP_BOOLEAN, PROP_NONE); - RNA_def_property_boolean_sdna(prop, NULL, "curssize", 0); - RNA_def_property_ui_text(prop, "Large Cursors", "Use large mouse cursors when available"); - RNA_def_property_update(prop, 0, "rna_userdef_update"); - prop = RNA_def_property(srna, "show_view_name", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_SHOW_VIEWPORTNAME); RNA_def_property_ui_text( -- cgit v1.2.3