summaryrefslogtreecommitdiffstats
path: root/src/config/clean/theme/style.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/clean/theme/style.rs')
-rw-r--r--src/config/clean/theme/style.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/config/clean/theme/style.rs b/src/config/clean/theme/style.rs
index 89f0919..67f95be 100644
--- a/src/config/clean/theme/style.rs
+++ b/src/config/clean/theme/style.rs
@@ -9,7 +9,6 @@ pub struct AppStyle {
pub fg: style::Color,
pub bg: style::Color,
pub prefix: String,
- pub prefix_width: usize,
pub modifier: style::Modifier,
}
@@ -22,9 +21,8 @@ impl AppStyle {
self.fg = fg;
self
}
- pub fn set_prefix(mut self, prefix: String, prefix_width: usize) -> Self {
+ pub fn set_prefix(mut self, prefix: String) -> Self {
self.prefix = prefix;
- self.prefix_width = prefix_width;
self
}
@@ -44,7 +42,6 @@ impl std::default::Default for AppStyle {
fg: default_color(),
bg: default_color(),
prefix: String::new(),
- prefix_width: 0,
modifier: style::Modifier::empty(),
}
}