Ren'Py How to make circle imagebuttons? [SOLVED]

TheBardOfAllTales

Newbie
Game Developer
Nov 18, 2018
41
123
Hi everyone,
I'm trying to make circle imagebuttons, but I only get squares with the circular image I use and a black background.
This is an example:
UI.png

and this is the code I used for the phone Imagebutton:
Code:
frame:
    xpos 1060
    ypos 10
    imagebutton:
        idle "imagebutton-phone.png"
        hover "imagebutton-phone.png" action Jump("thirdlabel")
        focus_mask True
what am I doing wrong?
Thanks for any help :)

I'm an idiot... I was creating a "frame" for each imagebutton...
removing "frame" solved it!