ParthJadhav / Tkinter-Designer

An easy and fast way to create a Python GUI 🐍
BSD 3-Clause "New" or "Revised" License
8.63k stars 794 forks source link

Report bug: Negative X transformation becoming positive #346

Open impasta21 opened 11 months ago

impasta21 commented 11 months ago

When having a negative x value in Figma on a component instance, the exported file results in a positive value. OS: Windows 10 ![Uploading Capture.PNG…]() button_image_2 = PhotoImage( file=relative_to_assets("button_2.png")) button_2 = Button( image=button_image_2, borderwidth=0, highlightthickness=0, command=lambda: print("button_2 clicked"), relief="flat" ) button_2.place( x=-25.0, y=10.0, width=434.0, height=50.0 )