Update theme2.rs

This commit is contained in:
Nate Butler 2023-11-27 09:11:51 -05:00
parent 2e61a84bd6
commit c40ab3c3da

View file

@ -134,6 +134,12 @@ impl Theme {
ignored: self.status().ignored,
}
}
/// Returns the [`Appearance`] for the theme.
#[inline(always)]
pub fn appearance(&self) -> Appearance {
self.appearance
}
}
#[derive(Clone, Debug, Default)]