Change summary
crates/ui2/src/components/button/button_like.rs | 5 ++++-
crates/workspace2/src/pane.rs | 1 -
2 files changed, 4 insertions(+), 2 deletions(-)
Detailed changes
@@ -342,7 +342,10 @@ impl RenderOnce for ButtonLike {
.when_some(self.width, |this, width| this.w(width))
.rounded_md()
.gap_1()
- .px_1()
+ .map(|this| match self.size {
+ ButtonSize::Default | ButtonSize::Compact => this.px_1(),
+ ButtonSize::None => this,
+ })
.bg(self.style.enabled(cx).background)
.when(!self.disabled, |this| {
this.cursor_pointer()
@@ -1481,7 +1481,6 @@ impl Pane {
})
.start_slot::<Indicator>(indicator)
.end_slot(
- // TODO: Fix button size
IconButton::new("close tab", Icon::Close)
.icon_color(Color::Muted)
.size(ButtonSize::None)