DearPyGui
DearPyGui copied to clipboard
`dpg.draw_rectangle` with `thickness=0` doesn't remove outline
Version of Dear PyGui
Version: 1.6.2 Operating System: macOS 10.15.7
My Issue/Question
When using dpg.draw_rectangle with thickness=0 the outline of the shape still remains.
Expected behavior
I expected the outline to go away.
Screenshots/Video
Standalone, minimal, complete and verifiable example
import dearpygui.dearpygui as dpg
dpg.create_context()
with dpg.window(tag="Primary Window"):
dpg.draw_rectangle(pmin=(0, 0), pmax=(100, 100), fill=(0, 0, 0), thickness=0)
dpg.create_viewport(width=200, height=200)
dpg.setup_dearpygui()
dpg.show_viewport()
dpg.set_primary_window("Primary Window", True)
dpg.start_dearpygui()
dpg.destroy_context()
I don't have mac os. But on windows 10, no such issue:

This must have been fixed. It does not occur on either of my Macs.