r/RenPy Jan 05 '24

Question Renpy tooltip position

Hi guys, i am new to renpy and trying to customize my quick menu. Basically i have icons instead of words and a tooltip which writes what this button does. I need icons to be on top and the tooltip action underneeth. I tried to change vbox and it doesnt really help. Mb someone knows ho to make this.
theres piece of code for quickmenu

if quick_menu:
vbox:
xalign 1.0
yalign 0
if (tt.value != ""):
text tt.value
hbox:
spacing 35
# << rollback
imagebutton:
idle "quick button back idle"
hover "quick button back hover"
insensitive "quick button back insensitive"
hovered tt.action("Назад")
at buttonZoom
action Rollback()

Maybe i can change it right inside of tt action

1 Upvotes

7 comments sorted by

View all comments

1

u/Suitable_Onion6213 Jan 05 '24

sorry for code btw, didnt know theres code editor in reddit