ignore unused

This commit is contained in:
Csaba
2024-11-07 00:09:43 +01:00
parent a5a7d6906c
commit 6a91dd46cd
10 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -31,12 +31,12 @@ pub trait BarWidget {
#[derive(Clone)]
pub struct RenderConfig {
/// Sets how widgets are grouped
group: i32,
_group: i32,
}
impl RenderConfig {
pub fn from(config: Arc<KomobarConfig>) -> Self {
Self { group: 1 }
pub fn from(_config: Arc<KomobarConfig>) -> Self {
Self { _group: 1 }
}
}