Show Zoom In/Out shortcuts in the labels (#10604)
Based on https://github.com/zed-industries/zed/discussions/10599 Does the same as the assistant tab with the Zoom In/Out labels.  Release Notes: - Adjusted Zoom In/Out for Pane and Terminal Pane to show keybinding labels
This commit is contained in:
parent
7e1a184446
commit
263023021d
2 changed files with 12 additions and 3 deletions
|
@ -365,7 +365,11 @@ impl Pane {
|
|||
pane.toggle_zoom(&crate::ToggleZoom, cx);
|
||||
}))
|
||||
.tooltip(move |cx| {
|
||||
Tooltip::text(if zoomed { "Zoom Out" } else { "Zoom In" }, cx)
|
||||
Tooltip::for_action(
|
||||
if zoomed { "Zoom Out" } else { "Zoom In" },
|
||||
&ToggleZoom,
|
||||
cx,
|
||||
)
|
||||
})
|
||||
})
|
||||
.when_some(pane.split_item_menu.as_ref(), |el, split_item_menu| {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue