Skip to content

Commit

Permalink
chore: hide YouTube channel documentation while under development
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-hm committed Mar 31, 2022
1 parent 4f59cf8 commit 5a85cd2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions interface/main_ui_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ def draw(self, context):
column = box.column()

row = column.row(align=True)
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/watch?v=bg4qpt2hkHg&list=PLZmp_NXXf0kDj5wSa3VpftsNx62YNXEc6"
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"

box = layout.box()
box.label(text="Sketching", icon='GREASEPENCIL')
Expand Down

0 comments on commit 5a85cd2

Please sign in to comment.