diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-08-03 01:09:09 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-08-03 01:11:24 -0700 |
commit | 69b436bec5d70f3d8b9ca6dda0f538d266a5a3c2 (patch) | |
tree | 0568d87ee264ff45c204214b717510043f1bfefe | |
parent | 81f6fd2208cbed6ac8f7e77b2f0b8dd7ac741fe3 (diff) |
modules/rkt: rkt_setup() s/blank/:blank/
Since blank is a builtin, at least for now it requires explicit
override since the builtins aren't added to the modules values
list and filtering is going to be always applied shortly.
-rw-r--r-- | src/modules/rkt/rkt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/rkt/rkt.c b/src/modules/rkt/rkt.c index 96167ac..ba8b3ab 100644 --- a/src/modules/rkt/rkt.c +++ b/src/modules/rkt/rkt.c @@ -409,7 +409,7 @@ static int rkt_setup(const til_settings_t *settings, til_setting_t **res_setting &(til_setting_spec_t){ .name = "Comma-separated list of modules for scenes to sequence", .key = "scenes", - .preferred = "blank", + .preferred = ":blank", /* FIXME TODO: this should really be NULL or "" for no scenes at all, but that doesn't work yet */ .annotations = NULL, .as_nested_settings = 1, }, |