diff --git a/crates/command_palette2/src/command_palette.rs b/crates/command_palette2/src/command_palette.rs index 048749a02d..6a11f3f7ea 100644 --- a/crates/command_palette2/src/command_palette.rs +++ b/crates/command_palette2/src/command_palette.rs @@ -79,10 +79,7 @@ impl Render for CommandPalette { type Element = Div; fn render(&mut self, _cx: &mut ViewContext) -> Self::Element { - v_stack() - .min_w_96() - .max_w(rems(36.)) - .child(self.picker.clone()) + v_stack().min_w_96().child(self.picker.clone()) } } diff --git a/crates/ui2/src/components/keybinding.rs b/crates/ui2/src/components/keybinding.rs index 15e365e526..4bf98a9466 100644 --- a/crates/ui2/src/components/keybinding.rs +++ b/crates/ui2/src/components/keybinding.rs @@ -39,7 +39,7 @@ impl RenderOnce for KeyBinding { .when(keystroke.modifiers.shift, |el| { el.child(KeyIcon::new(Icon::Shift)) }) - // .when_some(key_icon, |el, icon| el.child(KeyIcon::new(icon))) + .when_some(key_icon, |el, icon| el.child(KeyIcon::new(icon))) .when(key_icon.is_none(), |el| { el.child(Key::new(keystroke.key.to_uppercase().clone())) })