1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-31 07:29:49 +00:00

Workaround for #275

This commit is contained in:
OverloadedOrama 2020-07-01 03:08:50 +03:00
parent 0bc26bbbae
commit 6e7b3610d0

View file

@ -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)