From 400371cd3535d7363595d326bdee592ebfda9244 Mon Sep 17 00:00:00 2001 From: Tristan Strathearn Date: Tue, 5 Apr 2022 09:26:07 +1000 Subject: [PATCH] chore: reinstate YouTube channel link in main UI panel --- interface/main_ui_panel.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/interface/main_ui_panel.py b/interface/main_ui_panel.py index 29a9675..b79df27 100644 --- a/interface/main_ui_panel.py +++ b/interface/main_ui_panel.py @@ -27,10 +27,9 @@ def draw(self, context): column = box.column() row = column.row(align=True) - row.scale_y = 1.2 - row.operator("wm.url_open", text="View Online Docs", icon='HOME').url = "https://docs.nd.hugemenace.co" - # TODO: Re-enable this when the YouTube channel is ready - # row.operator("wm.url_open", text="YouTube", icon='FILE_MOVIE').url = "https://www.youtube.com/watch?v=bg4qpt2hkHg&list=PLZmp_NXXf0kDj5wSa3VpftsNx62YNXEc6" + row.scale_y = 1.5 + row.operator("wm.url_open", text="Website", icon='HOME').url = "https://docs.nd.hugemenace.co" + row.operator("wm.url_open", text="YouTube", icon='FILE_MOVIE').url = "https://www.youtube.com/channel/UCS9HsDPcaWQbo-4Brd7Yjmg" box = layout.box() box.label(text="Sketching", icon='GREASEPENCIL')