summaryrefslogtreecommitdiffstats
path: root/ui/src/components/mail/listing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/mail/listing.rs')
-rw-r--r--ui/src/components/mail/listing.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/ui/src/components/mail/listing.rs b/ui/src/components/mail/listing.rs
index 52568b87..3522f275 100644
--- a/ui/src/components/mail/listing.rs
+++ b/ui/src/components/mail/listing.rs
@@ -104,9 +104,10 @@ impl Component for Listing {
let bottom_right = bottom_right!(area);
let total_cols = get_x(bottom_right) - get_x(upper_left);
- let right_component_width = match self.menu_visibility {
- true => (self.ratio * total_cols) / 100,
- false => total_cols,
+ let right_component_width = if self.menu_visibility {
+ (self.ratio * total_cols) / 100
+ } else {
+ total_cols
};
let mid = get_x(bottom_right) - right_component_width;
if self.dirty && mid != get_x(upper_left) {
@@ -568,7 +569,7 @@ impl Listing {
(Color::Default, Color::Default)
};
- let (x, _) = write_string_to_grid(
+ write_string_to_grid(
&s,
grid,
color_fg,