frick borders

This commit is contained in:
dez 2024-02-16 12:16:49 +01:00
parent 3d9086b89a
commit c2a01e95f1

View file

@ -28,10 +28,10 @@ class StarField:
self.center_y = height / 2 self.center_y = height / 2
self.circular_mask_radius = min(self.center_x, self.center_y) * 0.95 self.circular_mask_radius = min(self.center_x, self.center_y) * 0.95
if isDark: if isDark:
self.canvas = Canvas(master, width=width, height=height, bg="#111111") self.canvas = Canvas(master, width=width, height=height, bg="#111111", highlightthickness=0)
self.canvas.pack() self.canvas.pack()
else: else:
self.canvas = Canvas(master, width=width, height=height, bg="#FFFFFF") self.canvas = Canvas(master, width=width, height=height, bg="#FFFFFF", highlightthickness=0)
self.canvas.pack() self.canvas.pack()
# Create a black circle as the background # Create a black circle as the background