From 74276bc4e875f8502fca8c52b533d351c530ff1b Mon Sep 17 00:00:00 2001 From: Bastian Rihm Date: Tue, 7 Nov 2023 12:21:10 +0100 Subject: [PATCH] Fix safari chyron font --- .../components/current-speaker-chyron-slide.component.scss | 2 +- .../src/app/site/pages/meetings/services/load-font.service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/app/site/pages/meetings/modules/projector/modules/slides/components/current-speaker-chyron-slide/components/current-speaker-chyron-slide.component.scss b/client/src/app/site/pages/meetings/modules/projector/modules/slides/components/current-speaker-chyron-slide/components/current-speaker-chyron-slide.component.scss index 8fbf518689..b6dc8989d4 100644 --- a/client/src/app/site/pages/meetings/modules/projector/modules/slides/components/current-speaker-chyron-slide/components/current-speaker-chyron-slide.component.scss +++ b/client/src/app/site/pages/meetings/modules/projector/modules/slides/components/current-speaker-chyron-slide/components/current-speaker-chyron-slide.component.scss @@ -22,7 +22,7 @@ display: table-cell; #inner-name { - font-family: $font-chyronname; + font-family: customChyronNameFont, $font-chyronname; } #inner-level { diff --git a/client/src/app/site/pages/meetings/services/load-font.service.ts b/client/src/app/site/pages/meetings/services/load-font.service.ts index 255fdccea4..7f26bdf113 100644 --- a/client/src/app/site/pages/meetings/services/load-font.service.ts +++ b/client/src/app/site/pages/meetings/services/load-font.service.ts @@ -56,7 +56,7 @@ export class LoadFontService { this.mediaManageService.getFontUrlObservable(`chyron_speaker_name`).subscribe(chyronFont => { if (chyronFont) { - this.setNewFontFace(`OSFont ChyronName`, chyronFont); + this.setNewFontFace(`customChyronNameFont`, chyronFont); } });