Skip to content

Commit

Permalink
Squashed commit of #250
Browse files Browse the repository at this point in the history
commit 8b35040
Author: Ryan Kirkbride <[email protected]>
Date:   Sat Oct 30 11:39:18 2021 -0400

    Avoid www in case of DNS issues and use correct docs url #250
  • Loading branch information
ryan-kirkbride committed Oct 30, 2021
1 parent 76a4e3a commit 76318f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions FoxDot/lib/Workspace/Editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ def check_versions():

self.true_fullscreen_toggled = BooleanVar()
self.true_fullscreen_toggled.set(False)

# Boolean for beat counter

self.show_counter = BooleanVar()
self.show_counter.set(False)

Expand Down Expand Up @@ -1777,11 +1777,11 @@ def get_all(self):
return self.text.get("1.0", END).strip()

def openhomepage(self):
webbrowser.open("http://www.foxdot.org/")
webbrowser.open("https://foxdot.org/")
return

def opendocumentation(self):
webbrowser.open("http://www.docs.foxdot.org/")
webbrowser.open("https://foxdot.org/docs/")
return

def set_temp_file(self, text):
Expand Down

0 comments on commit 76318f9

Please sign in to comment.