Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVilém Duha <vilda.novak@gmail.com>2021-04-08 14:06:38 +0300
committerVilém Duha <vilda.novak@gmail.com>2021-04-09 09:29:38 +0300
commit9488d672d6052163dd48a79fe3ed38046a11d0cb (patch)
tree8e6f2401eba40066a33bc642952d7ca4d8d5da19 /blenderkit
parent85d715495836b6990202e2993ad2dfe835bf9691 (diff)
BlenderKit: remove forgotten prints
Diffstat (limited to 'blenderkit')
-rw-r--r--blenderkit/search.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/blenderkit/search.py b/blenderkit/search.py
index 51dea4a8..d802973b 100644
--- a/blenderkit/search.py
+++ b/blenderkit/search.py
@@ -436,7 +436,7 @@ def timer_update():
load_previews()
ui_props = bpy.context.scene.blenderkitUI
if len(result_field) < ui_props.scrolloffset or not(thread[0].params.get('get_next')):
- #jump back
+ #jump back
ui_props.scrolloffset = 0
props.is_searching = False
props.search_error = False
@@ -1438,10 +1438,7 @@ def search(category='', get_next=False, author_id=''):
# crop long searches
if query.get('query'):
if len(query['query']) > 50:
- print('strip it now strip it good')
- print(query['query'])
query['query'] = strip_accents(query['query'])
- print(query['query'])
if len(query['query']) > 150:
idx = query['query'].find(' ', 142)