diff --git a/ui/src/components/mail/compose.rs b/ui/src/components/mail/compose.rs index 6316ddd07..0002b9f3c 100644 --- a/ui/src/components/mail/compose.rs +++ b/ui/src/components/mail/compose.rs @@ -471,7 +471,7 @@ impl Component for Composer { Color::Byte(189), Color::Byte(167), ); - if mid != 0 { + if mid != 0 && self.reply_context.is_none() { clear_area( grid, ( @@ -489,6 +489,17 @@ impl Component for Composer { bottom_right, ), ); + } else if mid != 0 { + clear_area( + grid, + ( + ( + get_x(bottom_right).saturating_sub(mid), + get_y(upper_left) - 1, + ), + (get_x(bottom_right).saturating_sub(mid), get_y(bottom_right)), + ), + ); } /* Regardless of view mode, do the following */