From c83e988a2d5a9f1084f95a7e93798e84e106f7d4 Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 30 Sep 2023 19:10:39 +0200 Subject: [PATCH] all_talks/room_name: fix missing defaults --- tile.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tile.lua b/tile.lua index cf31e3f..c4660d4 100644 --- a/tile.lua +++ b/tile.lua @@ -233,7 +233,7 @@ end local function view_all_talks(starts, ends, config, x1, y1, x2, y2) local title_size = config.font_size or 70 local default_color = {helper.parse_rgb(config.color or "#ffffff")} - local show_speakers = config.all_speakers + local show_speakers = config.all_speakers or true local a = anims.Area(x2 - x1, y2 - y1) @@ -337,7 +337,7 @@ end local function view_room(starts, ends, config, x1, y1, x2, y2) local font_size = config.font_size or 70 local align = config.room_align or "left" - local animate = config.room_animate + local animate = config.room_animate or true local default_color = {helper.parse_rgb(config.color or "#ffffff")} local r,g,b = helper.parse_rgb(config.color or "#ffffff")