From b65b82ad7ae5002223043a8f7c186f78dccba633 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 21 Jun 2026 20:35:19 -0700 Subject: [PATCH] Export ByteRange and CharRange --- crates/egui/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/egui/src/lib.rs b/crates/egui/src/lib.rs index b90eff7bc..3dc85a28d 100644 --- a/crates/egui/src/lib.rs +++ b/crates/egui/src/lib.rs @@ -454,8 +454,8 @@ pub use epaint::{ pub mod text { pub use crate::text_selection::CCursorRange; pub use epaint::text::{ - ByteIndex, CharIndex, FontData, FontDefinitions, FontFamily, Fonts, Galley, LayoutJob, - LayoutSection, TextFormat, TextWrapping, cursor::CCursor, + ByteIndex, ByteRange, CharIndex, CharRange, FontData, FontDefinitions, FontFamily, Fonts, + Galley, LayoutJob, LayoutSection, TextFormat, TextWrapping, cursor::CCursor, }; }