We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is how it looks:
And this is how it is created:
let label_color = Rgba::from_gray(if path.is_some() { 1.0 } else { 0.5 }); ui.label("directory:"); ui.colored_label(label_color, path.unwrap_or(&"- none selected -".to_string()));
It is rendered on a Linux system and the master branch (10f30a0).
The text was updated successfully, but these errors were encountered:
Simpler reproduce:
ui.colored_label(egui::Rgba::from_gray(1.0), "white"); ui.colored_label(egui::Rgba::from_gray(0.5), "gray");
Probably related to #1412
Sorry, something went wrong.
To make it even simpler to reproduce, here is a repo:
https://github.com/flosse/egui-font-rendering-bug
yes it is! You can reproduce this by using a commit before 8272b08 as shown in the before-8272b08 branch.
before-8272b08
I added a test suite to the color test panel: 68d5806
White-on-white also looks bad:
Successfully merging a pull request may close this issue.
This is how it looks:
And this is how it is created:
It is rendered on a Linux system and the master branch (10f30a0).
The text was updated successfully, but these errors were encountered: