mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-24 01:46:31 +00:00
Update scrollbase on any row computation
This commit is contained in:
parent
095367166b
commit
6827d2ed59
@ -213,6 +213,7 @@ impl TextArea {
|
|||||||
if !self.rows.is_empty() {
|
if !self.rows.is_empty() {
|
||||||
self.last_size = Some(SizeCache::build(size, size));
|
self.last_size = Some(SizeCache::build(size, size));
|
||||||
}
|
}
|
||||||
|
self.scrollbase.set_heights(size.y, self.rows.len());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn backspace(&mut self) {
|
fn backspace(&mut self) {
|
||||||
@ -346,7 +347,6 @@ impl TextArea {
|
|||||||
// Here, we know it's just no gonna happen.
|
// Here, we know it's just no gonna happen.
|
||||||
self.invalidate();
|
self.invalidate();
|
||||||
self.compute_rows(size);
|
self.compute_rows(size);
|
||||||
self.scrollbase.set_heights(size.y, self.rows.len());
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -456,6 +456,5 @@ impl View for TextArea {
|
|||||||
|
|
||||||
fn layout(&mut self, size: Vec2) {
|
fn layout(&mut self, size: Vec2) {
|
||||||
self.compute_rows(size);
|
self.compute_rows(size);
|
||||||
self.scrollbase.set_heights(size.y, self.rows.len());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user