fix: change zoom reset scope to active tab
fixed inconsistencies with zoom. Added a separate function for resetting the zoom for the current tab, used it for the ctrl 0 shortcut.
This commit is contained in:
parent
18f5f30673
commit
f689040c9c
1 changed files with 13 additions and 1 deletions
14
src/main.rs
14
src/main.rs
|
|
@ -596,6 +596,18 @@ impl App {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn reset_active_pane_zoom(&mut self) {
|
||||||
|
if let Some(tab_model) = self.pane_model.active() {
|
||||||
|
for entity in tab_model.iter() {
|
||||||
|
if tab_model.is_active(entity)
|
||||||
|
&& let Some(terminal) = tab_model.data::<Mutex<Terminal>>(entity)
|
||||||
|
{
|
||||||
|
terminal.lock().unwrap().set_zoom_adj(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn save_shortcuts_custom(&mut self) {
|
fn save_shortcuts_custom(&mut self) {
|
||||||
self.config.shortcuts_custom = self.shortcuts_config.custom.clone();
|
self.config.shortcuts_custom = self.shortcuts_config.custom.clone();
|
||||||
match &self.config_handler {
|
match &self.config_handler {
|
||||||
|
|
@ -3197,7 +3209,7 @@ impl Application for App {
|
||||||
return self.update_render_active_pane_zoom(message);
|
return self.update_render_active_pane_zoom(message);
|
||||||
}
|
}
|
||||||
Message::ZoomReset => {
|
Message::ZoomReset => {
|
||||||
self.reset_terminal_panes_zoom();
|
self.reset_active_pane_zoom();
|
||||||
return self.update_config();
|
return self.update_config();
|
||||||
}
|
}
|
||||||
Message::ContextMenuPopupClosed(id) => {
|
Message::ContextMenuPopupClosed(id) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue