summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-04 21:28:44 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-04 21:28:44 +0200
commit529c459c56a3bfed7a27c1aa798a408680936806 (patch)
tree9271d8becc841aafbf91d46cc72395b7afa1bf31 /graphics
parentf98328f4f1ee58b6288e4f19d7475e7eeb9a7ba7 (diff)
downloadiced-529c459c56a3bfed7a27c1aa798a408680936806.tar.gz
iced-529c459c56a3bfed7a27c1aa798a408680936806.tar.bz2
iced-529c459c56a3bfed7a27c1aa798a408680936806.zip
Remove unnecessary `buffer_mut_from_editor` call
Diffstat (limited to 'graphics')
-rw-r--r--graphics/src/text/editor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/text/editor.rs b/graphics/src/text/editor.rs
index fe1442d1..1f1d0050 100644
--- a/graphics/src/text/editor.rs
+++ b/graphics/src/text/editor.rs
@@ -500,7 +500,7 @@ impl editor::Editor for Editor {
if new_bounds != internal.bounds {
log::trace!("Updating size of `Editor`...");
- buffer_mut_from_editor(&mut internal.editor).set_size(
+ buffer.set_size(
font_system.raw(),
Some(new_bounds.width),
Some(new_bounds.height),