fix: video placeholder

This commit is contained in:
2024-11-05 13:35:31 +00:00
parent e718b8e322
commit 10cd15d942
6 changed files with 36 additions and 34 deletions

View File

@ -53,11 +53,11 @@ impl Widget for StreamEvent<'_> {
});
}
_ => {
painter.rect_filled(response.rect, 12., NEUTRAL_800);
painter.rect_filled(response.rect, ROUNDING_DEFAULT, NEUTRAL_800);
}
}
} else {
painter.rect_filled(response.rect, 12., NEUTRAL_800);
painter.rect_filled(response.rect, ROUNDING_DEFAULT, NEUTRAL_800);
}
let overlay_label_pad = Vec2::new(5., 5.);