We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58ba6fa commit 9c5332dCopy full SHA for 9c5332d
crates/egui/src/widgets/text_edit/builder.rs
@@ -1,6 +1,5 @@
1
use std::sync::Arc;
2
3
-use emath::Rect;
4
use epaint::text::{cursor::CCursor, Galley, LayoutJob};
5
6
use crate::{
@@ -723,16 +722,6 @@ impl<'t> TextEdit<'t> {
723
722
}
724
725
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
-
736
painter.galley(galley_pos, galley.clone(), text_color);
737
738
if has_focus {
0 commit comments