mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
Fix handling of single font name in theme (#7967)
* Fix handling of single font name in theme Previous check failed because `str` is an instance of Iterable so was never correctly wrapped in `[...]`. Instead, providing a single font such as "Arial" would result in a font list of "A, r, i, a, l" in the bundled CSS. * Handle single fonts.Font instance correctly * add changeset * changes --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Ali Abid <aliabid94@gmail.com>
This commit is contained in:
parent
7c9a964ac6
commit
1a7851c512
5
.changeset/yummy-rocks-relax.md
Normal file
5
.changeset/yummy-rocks-relax.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Fix handling of single font name in theme
|
@ -462,13 +462,13 @@ class Base(ThemeClass):
|
||||
self.text_xxl = text_size.xxl
|
||||
|
||||
# Font
|
||||
if not isinstance(font, Iterable):
|
||||
if isinstance(font, (fonts.Font, str)):
|
||||
font = [font]
|
||||
self._font = [
|
||||
fontfam if isinstance(fontfam, fonts.Font) else fonts.Font(fontfam)
|
||||
for fontfam in font
|
||||
]
|
||||
if not isinstance(font_mono, Iterable):
|
||||
if isinstance(font, fonts.Font) or isinstance(font_mono, str):
|
||||
font_mono = [font_mono]
|
||||
self._font_mono = [
|
||||
fontfam if isinstance(fontfam, fonts.Font) else fonts.Font(fontfam)
|
||||
|
Loading…
x
Reference in New Issue
Block a user