Skip to content

Commit ee85f81

Browse files
authored
Update builder.rs
1 parent adfc0be commit ee85f81

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

crates/egui/src/widgets/text_edit/builder.rs

-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use std::sync::Arc;
22

3-
use emath::Rect;
43
use epaint::text::{cursor::CCursor, Galley, LayoutJob};
54

65
use crate::{
@@ -723,16 +722,6 @@ impl<'t> TextEdit<'t> {
723722
}
724723
}
725724

726-
// Allocate additional space if edits were made this frame that changed the size. This is important so that,
727-
// if there's a ScrollArea, it can properly scroll to the cursor.
728-
let extra_size = galley.size() - rect.size();
729-
if extra_size.x > 0.0 || extra_size.y > 0.0 {
730-
ui.allocate_rect(
731-
Rect::from_min_size(outer_rect.max, extra_size),
732-
Sense::hover(),
733-
);
734-
}
735-
736725
painter.galley(galley_pos, galley.clone(), text_color);
737726

738727
if has_focus {

0 commit comments

Comments
 (0)