[Bf-blender-cvs] [85b1506c6ef] master: Fix Credits link not working in About menu

Brecht Van Lommel noreply at git.blender.org
Tue Sep 3 12:35:31 CEST 2019


Commit: 85b1506c6efcb14dfe094469dc6fff7e25f15118
Author: Brecht Van Lommel
Date:   Tue Sep 3 12:34:34 2019 +0200
Branches: master
https://developer.blender.org/rB85b1506c6efcb14dfe094469dc6fff7e25f15118

Fix Credits link not working in About menu

===================================================================

M	release/scripts/startup/bl_ui/space_topbar.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 836ec53e2e5..f66a363e6ca 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -349,7 +349,7 @@ class TOPBAR_MT_app_about(Menu):
         layout.separator()
 
         layout.operator("wm.url_open_preset", text="Blender Website", icon='URL').type = 'BLENDER'
-        layout.operator("wm.url_open", text="Credits", icon='URL').type = 'CREDITS'
+        layout.operator("wm.url_open_preset", text="Credits", icon='URL').type = 'CREDITS'
 
         layout.separator()



More information about the Bf-blender-cvs mailing list