BlenderKit: fix path to check own assets online

This commit is contained in:
Vilém Duha 2019-08-18 00:03:40 +02:00
parent df82d1be63
commit 37db201e51
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ BLENDERKIT_MAIN = "https://www.blenderkit.com"
BLENDERKIT_DEVEL = "https://devel.blenderkit.com"
BLENDERKIT_API = "/api/v1/"
BLENDERKIT_REPORT_URL = "usage_report/"
BLENDERKIT_USER_ASSETS = "https://www.blenderkit.com/my-assets"
BLENDERKIT_USER_ASSETS = "/my-assets"
BLENDERKIT_PLANS = "https://www.blenderkit.com/plans/pricing/"
BLENDERKIT_MANUAL = "https://youtu.be/1hVgcQhIAo8"
BLENDERKIT_MODEL_UPLOAD_INSTRUCTIONS_URL = "https://www.blenderkit.com/docs/upload/"

View File

@ -430,7 +430,7 @@ class VIEW3D_PT_blenderkit_profile(Panel):
layout.label(text='Remaining private storage: %i MiB' % (me['remainingPrivateQuota']))
layout.operator("wm.url_open", text="See my uploads",
icon='URL').url = paths.BLENDERKIT_USER_ASSETS
icon='URL').url = paths.get_bkit_url() + paths.BLENDERKIT_USER_ASSETS
def draw_panel_model_rating(self, context):