aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/theme.rs
diff options
context:
space:
mode:
authorPascal Kuthe2022-10-11 10:11:33 +0000
committerPascal Kuthe2022-10-11 10:11:33 +0000
commit328c4d002f5eaef2b79c73a48ce5011e89425b54 (patch)
tree9b1278cd5e97e8c260d78318f99cedc7b9679892 /helix-view/src/theme.rs
parent2f7088c1f37f11606944a9db52814a652f97fdcd (diff)
adress review comments
Diffstat (limited to 'helix-view/src/theme.rs')
-rw-r--r--helix-view/src/theme.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs
index b1c96f94..c32b3edf 100644
--- a/helix-view/src/theme.rs
+++ b/helix-view/src/theme.rs
@@ -268,7 +268,7 @@ impl ThemePalette {
value
.as_str()
.and_then(|s| s.parse().ok())
- .ok_or(format!("Theme: invalid underline_style: {}", value))
+ .ok_or(format!("Theme: invalid underline-style: {}", value))
}
pub fn parse_style(&self, style: &mut Style, value: Value) -> Result<(), String> {
@@ -279,7 +279,6 @@ impl ThemePalette {
"bg" => *style = style.bg(self.parse_color(value)?),
"underline-color" => *style = style.underline_color(self.parse_color(value)?),
"underline-style" => {
- warn!("found style");
*style = style.underline_style(Self::parse_underline_style(&value)?)
}
"modifiers" => {