Remove borders

main
justuser31 2 years ago
parent f87c84db30
commit 855e80f6e5

@ -69,7 +69,8 @@ class PixelArt:
def draw_pixel(self, event): def draw_pixel(self, event):
x = int(event.x / 12) x = int(event.x / 12)
y = int(event.y / 12) y = int(event.y / 12)
self.canvas.create_rectangle(x*12, y*12, x*12 + 12, y*12 + 12, fill=self.current_color) #self.canvas.create_rectangle(x*12, y*12, x*12 + 12, y*12 + 12, fill=self.current_color)
self.canvas.create_rectangle(x * 12, y * 12, x * 12 + 12, y * 12 + 12, fill=self.current_color, outline="")
def set_color(self, color): def set_color(self, color):
self.current_color = color self.current_color = color

Loading…
Cancel
Save