UI: Fix File Broswer filter checkbox not connected to label

Differential Revision: https://developer.blender.org/D8168

Reviewed by: Hans Goudey, Julian Eisel
This commit is contained in:
Adrian Newton 2020-07-20 17:32:02 +02:00 committed by Julian Eisel
parent 4432209849
commit 7d85495ab9
1 changed files with 1 additions and 3 deletions

View File

@ -97,9 +97,7 @@ class FILEBROWSER_PT_filter(Panel):
params = space.params
is_lib_browser = params.use_library_browsing
row = layout.row(align=True)
row.prop(params, "use_filter", text="", toggle=False)
row.label(text="Filter")
layout.prop(params, "use_filter", text="Filter", toggle=False)
col = layout.column()
col.active = params.use_filter