From 663a863386c5f9ba3482a3d93baaaac5f9532ae2 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 5 Feb 2026 13:23:36 +0000 Subject: [PATCH] fix main fadein/fadeout help output --- lr.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lr.go b/lr.go index ffa3c0f..5610bd4 100644 --- a/lr.go +++ b/lr.go @@ -9,9 +9,9 @@ import ( type MainCmdGroup struct { Mute MainMuteCmd `help:"Get or set the mute state of the Main L/R output." cmd:""` - Fader MainFaderCmd `help:"Get or set the fader level of the Main L/R output." cmd:""` - Fadein MainFadeinCmd `help:"Get or set the fade-in time of the Main L/R output." cmd:""` - Fadeout MainFadeoutCmd `help:"Get or set the fade-out time of the Main L/R output." cmd:""` + Fader MainFaderCmd `help:"Get or set the fader level of the Main L/R output." cmd:""` + Fadein MainFadeinCmd `help:"Fade in the Main L/R output over a specified duration." cmd:""` + Fadeout MainFadeoutCmd `help:"Fade out the Main L/R output over a specified duration." cmd:""` } // MainMuteCmd defines the command for getting or setting the mute state of the Main L/R output, allowing users to specify the desired state as "true"/"on" or "false"/"off".