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

Refactor: move text selection logic to own module (#3843)

This is a follow-up to https://github.com/emilk/egui/issues/3804 and a
pre-requisite for https://github.com/emilk/egui/issues/3816
This commit is contained in:
Emil Ernerfeldt
2024-01-19 15:38:53 +01:00
committed by GitHub
parent 3936418f0b
commit f034f6db9f
15 changed files with 497 additions and 480 deletions

View File

@@ -1,4 +1,4 @@
use egui::{text_edit::CCursorRange, *};
use egui::{text::CCursorRange, *};
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
#[cfg_attr(feature = "serde", serde(default))]