So I have a font called "Digital dream" and I'm trying to use it in a GUI that I made with python and tkinter, but the font won't change.
Here is my code:
# Creates the label that will display time passed
label = Label(root, text="0:00:00.000000", font=("Digital dream", 14))
label.grid(column=1, row=0)
If I change "Digital dream" to "Arial", for example, it works.