Results 44 comments of nobbele

oh this was a different issue, right

> Putting \n at the beginning of a string does change its drawn dimensions, but putting \n at the end does not. leading or trailing \n, neither changes dimensions() and...

That use case would already work with fragments no? ```rust let mut text = Text::new(); text.push("Item List:\n\n"); for item in items { text.push(item); text.push("\n"); } ``` But if you must...

Having an API similar to LÖVE here would be pretty great, I am wondering if it's possible to query the name and location in gfx though

confirmed on Intel + X11, same with both non-Fifo modes

Making it center_wrap is also an option, not sure which to go with. Keeping the existing ones would break less code again

I'm not really sure what the use-case or the difference is, need to investigate.