From 7c539787119403583378c244df67ad7a08f1891f Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 21 Jun 2026 20:46:29 -0700 Subject: [PATCH] export the ext traits --- crates/egui/src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/egui/src/lib.rs b/crates/egui/src/lib.rs index 3dc85a28d..5564a2b21 100644 --- a/crates/egui/src/lib.rs +++ b/crates/egui/src/lib.rs @@ -454,8 +454,9 @@ pub use epaint::{ pub mod text { pub use crate::text_selection::CCursorRange; pub use epaint::text::{ - ByteIndex, ByteRange, CharIndex, CharRange, FontData, FontDefinitions, FontFamily, Fonts, - Galley, LayoutJob, LayoutSection, TextFormat, TextWrapping, cursor::CCursor, + ByteIndex, ByteRange, ByteRangeExt, CharIndex, CharRange, CharRangeExt, FontData, + FontDefinitions, FontFamily, Fonts, Galley, LayoutJob, LayoutSection, TextFormat, + TextWrapping, cursor::CCursor, }; }