Skip to content

Commit

Permalink
room_info: colour screen according to next talk if enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunsi committed Oct 10, 2024
1 parent d295ae1 commit 3235a91
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ function update_room_info() {

if (current_talk && current_talk['track']) {
box.style.backgroundColor = current_talk['track']['color'];
} else if (next_talk && next_talk['track'] && event_info['room-info']['show_next_talk']) {
box.style.backgroundColor = next_talk['track']['color'];
} else {
box.style.backgroundColor = event_info['color'];
}
Expand Down

0 comments on commit 3235a91

Please sign in to comment.