From 6e7b3610d04c7b1c80f27bf24d0299a09907d9aa Mon Sep 17 00:00:00 2001 From: OverloadedOrama <35376950+OverloadedOrama@users.noreply.github.com> Date: Wed, 1 Jul 2020 03:08:50 +0300 Subject: [PATCH] Workaround for #275 --- src/UI/TopMenuContainer.gd | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/UI/TopMenuContainer.gd b/src/UI/TopMenuContainer.gd index 7a4f8cc..31004f2 100644 --- a/src/UI/TopMenuContainer.gd +++ b/src/UI/TopMenuContainer.gd @@ -360,7 +360,10 @@ func help_menu_id_pressed(id : int) -> void: 2: # Issue Tracker OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/issues") 3: # Changelog - OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v07---2020-05-16") + if OS.get_name() == "OSX": + OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md") + else: + OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v07---2020-05-16") 4: # About Pixelorama Global.control.get_node("AboutDialog").popup_centered() Global.dialog_open(true)