You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
style.text_styles.insert(egui::TextStyle::Heading, egui::FontId::proportional(16.0));// reduce size of headers
May cause Error: Non-zero offset texture updates are not implemented yet to be printed to the console and the text to fail to display on screen. Sometimes it's works, sometimes it doesn't. I can't really tell what will and won't work, except for knowing that the defaults always work (regardless of which style are applied to)
The text was updated successfully, but these errors were encountered:
I cannot repair this due to ggez since I do not have greater control when creating textures, at another time I am going to make a change to the ggez library and if they accept it I will repair this.
I'm having the same problem when applying the .size() method to the text going into a label. In the meantime, do you know of any workaround that might help?
Also having the exact same problem. For me the workaround is reducing the FontSize a bit, like this: egui::FontId::proportional(14.0),
to egui::FontId::proportional(12.0),
Attempting to change the change the egui text styles to anything that isn't the default, such as this sample from eguis docs:
Or even a simpler edit like this:
May cause
Error: Non-zero offset texture updates are not implemented yet
to be printed to the console and the text to fail to display on screen. Sometimes it's works, sometimes it doesn't. I can't really tell what will and won't work, except for knowing that the defaults always work (regardless of which style are applied to)The text was updated successfully, but these errors were encountered: