diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-08-04 19:59:22 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-08-04 19:59:22 -0700 |
commit | d7b92d1b6dd1b152c7263763de7e8f6b174583d4 (patch) | |
tree | e9c3692a3c5d3cd50ff7346b5d7ef6d772fca760 /src/modules | |
parent | 72e9eb1188e4889f23c50836d1ccd2206852e588 (diff) |
modules/rkt: make default module "compose"
Most of the time in scener you want to add a compose, you
basically never want blank, so the :blank thing was kind of silly
from the perspective of what happens most often.
Diffstat (limited to 'src/modules')
-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 263da23..f5f73e7 100644 --- a/src/modules/rkt/rkt.c +++ b/src/modules/rkt/rkt.c @@ -27,7 +27,7 @@ * GNU Rocket (https://github.com/rocket/rocket) */ -#define RKT_DEFAULT_SCENE_MODULE ":blank" +#define RKT_DEFAULT_SCENE_MODULE "compose" /* variadic helper wrapping librocket's sync_get_track() */ static const struct sync_track * rkt_sync_get_trackf(rkt_context_t *ctxt, const char *format, ...) |