From 2518c61b22f387bde14a04c3e4f936353db4a4b7 Mon Sep 17 00:00:00 2001 From: galister <22305755+galister@users.noreply.github.com> Date: Thu, 29 Feb 2024 17:30:59 +0100 Subject: [PATCH] Label type Exec has command, not exec --- src/gui/modular/label.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/modular/label.rs b/src/gui/modular/label.rs index 6d06b3f..f6ad058 100644 --- a/src/gui/modular/label.rs +++ b/src/gui/modular/label.rs @@ -52,7 +52,7 @@ pub enum LabelData { Exec { last_exec: Instant, interval: f32, - exec: Vec>, + command: Vec>, child: Option, }, }