summaryrefslogtreecommitdiffstats
path: root/src/interactive/widgets/footer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/interactive/widgets/footer.rs')
-rw-r--r--src/interactive/widgets/footer.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interactive/widgets/footer.rs b/src/interactive/widgets/footer.rs
index f89bae5..461580c 100644
--- a/src/interactive/widgets/footer.rs
+++ b/src/interactive/widgets/footer.rs
@@ -5,9 +5,9 @@ use tui::{
layout::Rect,
style::Modifier,
style::{Color, Style},
- widgets::Widget,
- widgets::{Paragraph, Text},
+ widgets::{Paragraph, Text, Widget},
};
+
pub struct Footer;
pub struct FooterProps {
@@ -55,6 +55,6 @@ impl Footer {
modifier: Modifier::REVERSED,
..Default::default()
})
- .draw(area, buf);
+ .render(area, buf);
}
}