Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing text styles may cause an error #41

Open
DamienPup opened this issue May 11, 2024 · 3 comments
Open

Changing text styles may cause an error #41

DamienPup opened this issue May 11, 2024 · 3 comments

Comments

@DamienPup
Copy link

Attempting to change the change the egui text styles to anything that isn't the default, such as this sample from eguis docs:

style.text_styles = [
            (Heading, FontId::new(30.0, Proportional)),
            (Name("Heading2".into()), FontId::new(25.0, Proportional)),
            (Name("Context".into()), FontId::new(23.0, Proportional)),
            (Body, FontId::new(18.0, Proportional)),
            (Monospace, FontId::new(14.0, Proportional)),
            (Button, FontId::new(14.0, Proportional)),
            (Small, FontId::new(10.0, Proportional)),
        ].into();

Or even a simpler edit like this:

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)

@NemuiSen
Copy link
Owner

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.

@SkuliAdams
Copy link

SkuliAdams commented Jun 5, 2024

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?

@nyvs
Copy link

nyvs commented Feb 4, 2025

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),

Any update is greatly appreciated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants