Skip to content

Commit 591d55c

Browse files
committed
Add window title and icon
1 parent cf3bfbc commit 591d55c

File tree

3 files changed

+2
-0
lines changed

3 files changed

+2
-0
lines changed

icon/tc_icon.bmp

256 KB
Binary file not shown.

icon/tc_icon.png

1.49 KB
Loading

src/main.py

+2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ def main():
7171
print(mem)
7272

7373
window = tk.Tk()
74+
window.title("TurnaCore")
75+
window.iconphoto(False, tk.PhotoImage(file="../icon/tc_icon.png"))
7476
canvas = tk.Canvas(window, height=480, width=640, bg="black")
7577
canvas.pack()
7678

0 commit comments

Comments
 (0)