Issue
I would like to know how to reset font back to default in code. I used
Frame4.option_add("*Font", "Arial, 14")
to make the message frame visually bigger, now I would like to return it to normal after closing the frame. I tried
window.option_add("*Font", "Courier New, 10"
but it kept giving error about expecting integer but got New
Solution
You should be able to do:
window.option_add("*Font", "Courier, 10")
Answered By - BlackHatSamurai
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.