From f1d959b003e28ee2226b26651dfd6b0fff13d2e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vil=C3=A9m=20Duha?= Date: Fri, 30 Apr 2021 08:23:29 +0200 Subject: BlenderKit: fix layout of the floating preview was unorganized after recent cleanup -cleaned part of the old code --- blenderkit/upload.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'blenderkit/upload.py') diff --git a/blenderkit/upload.py b/blenderkit/upload.py index b1d20f94..9fd54187 100644 --- a/blenderkit/upload.py +++ b/blenderkit/upload.py @@ -567,6 +567,14 @@ def update_free_full(self, context): " based on our fair share system. " \ "Part of subscription is sent to artists based on usage by paying users.") +def user_is_owner(asset_data=None): + '''Checks if the current logged in user is owner of the asset''' + profile = bpy.context.window_manager.get('bkit profile') + if profile is None: + return False + if int(asset_data['author']['id']) == int(profile['user']['id']): + return True + return False def can_edit_asset(active_index=-1, asset_data=None): if active_index < 0 and not asset_data: -- cgit v1.2.3