Fix message bar not updating PTY size on hide

This commit is contained in:
Kirill Chibisov 2019-05-14 02:06:19 +03:00 committed by Christian Duerr
parent 5a71b599da
commit f93a84aef4
1 changed files with 8 additions and 2 deletions

View File

@ -367,7 +367,10 @@ impl Display {
} }
} }
if font_changed || self.last_message != terminal.message_buffer_mut().message() { // Message bar update detected
let message_bar_changed = self.last_message != terminal.message_buffer_mut().message();
if font_changed || message_bar_changed {
if new_size == None { if new_size == None {
// Force a resize to refresh things // Force a resize to refresh things
new_size = Some(PhysicalSize::new( new_size = Some(PhysicalSize::new(
@ -415,7 +418,10 @@ impl Display {
pty_size.height -= pty_size.cell_height * message.text(&size).len() as f32; pty_size.height -= pty_size.cell_height * message.text(&size).len() as f32;
} }
if previous_cols != pty_size.cols() || previous_lines != pty_size.lines() { if message_bar_changed
|| previous_cols != pty_size.cols()
|| previous_lines != pty_size.lines()
{
pty_resize_handle.on_resize(&pty_size); pty_resize_handle.on_resize(&pty_size);
} }