Skip to content

Commit

Permalink
figure out if is failing over messenger
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Dec 21, 2024
1 parent b8fc032 commit ec1d49b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontends/rioterm/src/context/grid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,12 @@ impl<T: rio_backend::event::EventListener> ContextGrid<T> {
drop(terminal);
let winsize =
crate::renderer::utils::terminal_dimensions(&self.inner[index].val.dimension);
let _ = self.inner[index].val.messenger.send_resize(winsize);
match self.inner[index].val.messenger.send_resize(winsize) {
Ok(_) => {}
Err(a) => {
println!("{:?}", a);
}
}
}

pub fn remove_current(&mut self) {
Expand Down

0 comments on commit ec1d49b

Please sign in to comment.