Skip to content

Commit

Permalink
Merge pull request #603 from bitmovin/feature/fix_font_family_selectbox
Browse files Browse the repository at this point in the history
Fix font family selectbox
  • Loading branch information
wasp898 authored Feb 1, 2024
2 parents 1d9e83d + 250a252 commit c4bae83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [develop]

### Fixed
- FCC subtitle settings menu showing two options with the same value

## [3.53.0] - 2024-01-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/ts/components/subtitlesettings/fontfamilyselectbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class FontFamilySelectBox extends SubtitleSettingSelectBox {
this.addItem('monospacedserif', i18n.getLocalizer('settings.subtitles.font.family.monospacedserif'));
this.addItem('proportionalserif', i18n.getLocalizer('settings.subtitles.font.family.proportionalserif'));
this.addItem('monospacedsansserif', i18n.getLocalizer('settings.subtitles.font.family.monospacedsansserif'));
this.addItem('proportionalsansserif', i18n.getLocalizer('settings.subtitles.font.family.proportionalserif'));
this.addItem('proportionalsansserif', i18n.getLocalizer('settings.subtitles.font.family.proportionalsansserif'));
this.addItem('casual', i18n.getLocalizer('settings.subtitles.font.family.casual'));
this.addItem('cursive', i18n.getLocalizer('settings.subtitles.font.family.cursive'));
this.addItem('smallcapital', i18n.getLocalizer('settings.subtitles.font.family.smallcapital'));
Expand Down

0 comments on commit c4bae83

Please sign in to comment.