Remove Copy implementation for TextArea

This commit is contained in:
Héctor Ramón Jiménez 2023-03-28 12:23:56 +02:00 committed by Josh Groves
parent 0857bef584
commit d40b6ad2ed

View file

@ -96,7 +96,7 @@ impl Default for TextBounds {
}
/// A text area containing text to be rendered along with its overflow behavior.
#[derive(Clone, Copy)]
#[derive(Clone)]
pub struct TextArea<'a> {
/// The buffer containing the text to be rendered.
pub buffer: &'a Buffer,