diff options
author | 2024-09-04 21:28:44 +0200 | |
---|---|---|
committer | 2024-09-04 21:28:44 +0200 | |
commit | 529c459c56a3bfed7a27c1aa798a408680936806 (patch) | |
tree | 9271d8becc841aafbf91d46cc72395b7afa1bf31 /graphics | |
parent | f98328f4f1ee58b6288e4f19d7475e7eeb9a7ba7 (diff) | |
download | iced-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.rs | 2 |
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), |