Restore Sized bound on StyleHelpers

This commit is contained in:
Marshall Bowers
2023-10-06 13:45:56 -04:00
parent 7fd35d68bb
commit 65cd4f5838
+1 -1
View File
@@ -5,7 +5,7 @@ use crate::{
};
use smallvec::smallvec;
pub trait StyleHelpers: Styled<Style = Style> {
pub trait StyleHelpers: Sized + Styled<Style = Style> {
gpui3_macros::style_helpers!();
fn h(mut self, height: Length) -> Self {