Hi! Was curious about the "Say/who" area, if I use the phone code, then my characters names no longer fit into the text boxes. I'm pretty new to coding, but how would I fix that? Sorry if it's a dumb question! I really do love the phone concpet.
Viewing post in Ren'Py Phone System comments
Hi sorr for the delay. The spots i circled in yellow are visually what I mean, in my project without your code snippet the name box is more in the middle? Vs being very left centered. With your code addition the nameplate doesnt fit properly anymore. But i maybe just did something wrong. Again sorry if it's a dumb question.
But here is the code
```python
screen say(who, what):
style_prefix "say"
window:
id "window"
background (None if phone_mode else Image("gui/textbox.png", xalign=0.5, yalign=1.0))
xalign 0.5
xfill True
yalign gui.textbox_yalign
ysize gui.textbox_height
if who is not None:
text who id "who"
text what id "what"
if not renpy.variant("small"):
add SideImage() xalign 0.0 yalign

