Skip to content

Commit 2578436

Browse files
authored
Merge pull request #29 from prikhi/master
Set the Window's Class Name to `FoxDot`
2 parents 5abe314 + e0ac66d commit 2578436

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

FoxDot/lib/Workspace/ConfigFile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class Config:
88
def __init__(self, path):
9-
self.root = Tk()
9+
self.root = Tk(className='FoxDot')
1010
self.root.title("conf.txt")
1111

1212
try:

FoxDot/lib/Workspace/Editor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self, CodeClass):
4949

5050
# Set up master widget
5151

52-
self.root = Tk()
52+
self.root = Tk(className='FoxDot')
5353
self.root.title("FoxDot - Live Coding with Python and SuperCollider")
5454
self.root.rowconfigure(0, weight=1) # Text box
5555
self.root.rowconfigure(1, weight=0) # Separator

0 commit comments

Comments
 (0)