mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-10 13:02:59 +00:00
fix(fonts): Remove missing cozette.bdf font reference (#160)
- Removed cozette_bdf from common_fonts dictionary in font_manager.py - Removed cozette_bdf option from web interface font selectors - Resolves warning: 'Common font file not found: assets/fonts/cozette.bdf' - Font can be re-enabled by adding the font file and re-adding to common_fonts Co-authored-by: Chuck <chuck@example.com>
This commit is contained in:
@@ -114,7 +114,6 @@
|
||||
<option value="">Use default</option>
|
||||
<option value="press_start">Press Start 2P</option>
|
||||
<option value="four_by_six">4x6 Font</option>
|
||||
<option value="cozette_bdf">Cozette BDF</option>
|
||||
<option value="matrix_light_6">Matrix Light 6</option>
|
||||
</select>
|
||||
</div>
|
||||
@@ -166,7 +165,6 @@
|
||||
<select id="preview-family" class="form-control text-sm">
|
||||
<option value="press_start">Press Start 2P</option>
|
||||
<option value="four_by_six">4x6 Font</option>
|
||||
<option value="cozette_bdf">Cozette BDF</option>
|
||||
<option value="matrix_light_6">Matrix Light 6</option>
|
||||
</select>
|
||||
</div>
|
||||
@@ -663,7 +661,6 @@ function getFontDisplayName(fontKey) {
|
||||
const names = {
|
||||
'press_start': 'Press Start 2P',
|
||||
'four_by_six': '4x6 Font',
|
||||
'cozette_bdf': 'Cozette BDF',
|
||||
'matrix_light_6': 'Matrix Light 6'
|
||||
};
|
||||
return names[fontKey] || fontKey;
|
||||
|
||||
Reference in New Issue
Block a user