Outliner: Make search always work

This was a flag in early 2.8 to allow users to hide the entire search prop.
Now since we want it fully expanded at all times, it makes no more sense.
This commit is contained in:
Dalai Felinto
2018-06-25 12:14:38 +02:00
parent 861b0ec417
commit 0145daa09b
6 changed files with 8 additions and 17 deletions

View File

@@ -43,10 +43,7 @@ class OUTLINER_HT_header(Header):
layout.separator_spacer()
row = layout.row(align=True)
row.prop(space, "use_filter_search", text="")
sub = row.row(align=True)
sub.prop(space, "filter_text", text="")
sub.enabled = space.use_filter_search
row.prop(space, "filter_text", icon='VIEWZOOM', text="")
layout.separator_spacer()