UI: Outliner Filter popover: Remove wrong use of icons
Missed this file from prior commit.
This commit is contained in:
@@ -2750,20 +2750,17 @@ static void rna_def_space_outliner(BlenderRNA *brna)
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "search_flags", SO_FIND_CASE_SENSITIVE);
|
||||
RNA_def_property_ui_text(
|
||||
prop, "Case Sensitive Matches Only", "Only use case sensitive matches of search string");
|
||||
RNA_def_property_ui_icon(prop, ICON_SYNTAX_OFF, 0);
|
||||
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_OUTLINER, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "use_filter_complete", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_sdna(prop, NULL, "search_flags", SO_FIND_COMPLETE);
|
||||
RNA_def_property_ui_text(
|
||||
prop, "Complete Matches Only", "Only use complete matches of search string");
|
||||
RNA_def_property_ui_icon(prop, ICON_OUTLINER_DATA_FONT, 0);
|
||||
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_OUTLINER, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "use_sort_alpha", PROP_BOOLEAN, PROP_NONE);
|
||||
RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SO_SKIP_SORT_ALPHA);
|
||||
RNA_def_property_ui_text(prop, "Sort Alphabetically", "");
|
||||
RNA_def_property_ui_icon(prop, ICON_SORTALPHA, 0);
|
||||
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_OUTLINER, NULL);
|
||||
|
||||
prop = RNA_def_property(srna, "show_restrict_columns", PROP_BOOLEAN, PROP_NONE);
|
||||
|
||||
Reference in New Issue
Block a user