From a5a7d6906cee7cd3810f59a26261437d596399f7 Mon Sep 17 00:00:00 2001 From: Csaba Date: Wed, 6 Nov 2024 23:55:59 +0100 Subject: [PATCH] comment --- komorebi-bar/src/widget.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/komorebi-bar/src/widget.rs b/komorebi-bar/src/widget.rs index 84c44fe6..8f188ad1 100644 --- a/komorebi-bar/src/widget.rs +++ b/komorebi-bar/src/widget.rs @@ -30,13 +30,14 @@ pub trait BarWidget { #[derive(Clone)] pub struct RenderConfig { + /// Sets how widgets are grouped group: i32, } impl RenderConfig { pub fn from(config: Arc) -> Self { Self { group: 1 } - } + } } #[derive(Clone, Debug, Serialize, Deserialize, JsonSchema)]