We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3b3fbd commit 9336e68Copy full SHA for 9336e68
crates/egui/src/text_selection/label_text_selection.rs
@@ -618,8 +618,8 @@ fn process_selection_key_events(
618
}
619
620
fn selected_text(galley: &Galley, cursor_range: &CursorRange) -> String {
621
- // This logic means we can select everything in an ellided label (including the `…`)
622
- // and still copy the entire un-ellided text!
+ // This logic means we can select everything in an elided label (including the `…`)
+ // and still copy the entire un-elided text!
623
let everything_is_selected = cursor_range.contains(&CursorRange::select_all(galley));
624
625
let copy_everything = cursor_range.is_empty() || everything_is_selected;
0 commit comments