1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -04:00

Add example of how to move text cursor in a TextEdit

This commit is contained in:
Emil Ernerfeldt
2022-03-20 23:08:19 +01:00
parent fde9c232b3
commit ccbddcfe95
2 changed files with 28 additions and 2 deletions

View File

@@ -391,9 +391,10 @@ pub use epaint::{
};
pub mod text {
pub use crate::text_edit::CCursorRange;
pub use epaint::text::{
FontData, FontDefinitions, FontFamily, Fonts, Galley, LayoutJob, LayoutSection, TextFormat,
TAB_SIZE,
cursor::CCursor, FontData, FontDefinitions, FontFamily, Fonts, Galley, LayoutJob,
LayoutSection, TextFormat, TAB_SIZE,
};
}