Skip to content

Commit 5c44eac

Browse files
committed
Fix fonts
1 parent 2d69ad2 commit 5c44eac

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tictactoe.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pygame
22
import thorpy
33
from os import path
4-
from tkinter import messagebox, Tk
4+
from tkinter import messagebox, Tk, simpledialog
55
from threading import Thread
66
from multiprocessing import Process
77
from TicTacToe.Grid import Grid
@@ -17,8 +17,7 @@ def __init__(self, assetsPath, saveToCloud=True):
1717
super().__init__()
1818
pygame.init()
1919
pygame.font.init()
20-
self.Font = pygame.font.SysFont('Arial', 35)
21-
20+
self.Font = pygame.font.SysFont('Calibri', 35)
2221
self.clock = pygame.time.Clock()
2322
self.assets = {}
2423
self.loadAssets(assetsPath)

0 commit comments

Comments
 (0)