Graphics Outline Bug

Issue #168 new
Keith O'Hara created an issue

Two lines are drawn:

from Graphics import *

win = Window()

c1 = Circle((100, 100), 5) 
c1.setOutline(None) # CALICO BUG! 
c1.draw(win)

c2 = Circle((200, 200), 5) 
c2.setOutline(None) # CALICO BUG!
c2.draw(win)

l = Line((100, 100), (200, 200))
l.draw(win)

Comments (2)

  1. Log in to comment