Skip to content

Instantly share code, notes, and snippets.

@bu5hm4nn
Created March 9, 2023 04:07
Show Gist options
  • Save bu5hm4nn/f377cf60397b70c536481280f85a0fda to your computer and use it in GitHub Desktop.
Save bu5hm4nn/f377cf60397b70c536481280f85a0fda to your computer and use it in GitHub Desktop.
Get glyph width in Rust egui
let char = 'C';
let width = ui.fonts(|f| -> f32 {
f.glyph_width(&TextStyle::Body.resolve(ui.style()), char)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment