BlenderKit: enable search style for models

(all advanced search will be enabled together with the growth)
This commit is contained in:
Vilem Duha 2019-05-20 08:36:40 +02:00
parent d1fe2d0dce
commit 85956fd68f
2 changed files with 4 additions and 2 deletions

View File

@ -662,6 +662,8 @@ class Searcher(threading.Thread):
if query.get('category'):
nquery['category_subtree'] = query['category']
if query.get('style'):
nquery['model_style'] = query['style']
# build request manually
# TODO use real queries
requeststring = '?query=' + query['keywords'].lower() + '+'

View File

@ -279,7 +279,7 @@ def draw_panel_model_search(self, context):
if props.report == 'Available only in higher plans.':
layout.operator("wm.url_open", text="Check plans", icon='URL').url = paths.BLENDERKIT_PLANS
# layout.prop(props, "search_style")
layout.prop(props, "search_style")
# if props.search_style == 'OTHER':
# layout.prop(props, "search_style_other")
# layout.prop(props, "search_engine")
@ -287,7 +287,7 @@ def draw_panel_model_search(self, context):
# layout.prop(props, 'append_link', expand=True, icon_only=False)
# layout.prop(props, 'import_as', expand=True, icon_only=False)
# layout.prop(props, "search_advanced")
#layout.prop(props, "search_advanced")
if props.search_advanced:
layout.separator()