8000 feat: support multiple terminal fonts by mtojek · Pull Request #17257 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: support multiple terminal fonts #17257

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Apr 7, 2025
Merged
Prev Previous commit
Next Next commit
fixes
  • Loading branch information
mtojek committed Apr 7, 2025
commit 45245fc6808e0f4d661aa0f4b0c861104865ba27
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ export const AppearanceForm: FC<AppearanceFormProps> = ({
>
<FormControl>
<RadioGroup
aria-labelledby="demo-radio-buttons-group-label"
aria-labelledby="fonts-radio-buttons-group-label"
defaultValue={currentTerminalFont}
name="radio-buttons-group"
name="fonts-radio-buttons-group"
onChange={(_, value) =>
onChangeTerminalFont(toTerminalFontName(value))
}
Expand All @@ -120,7 +120,7 @@ export const AppearanceForm: FC<AppearanceFormProps> = ({
control={<Radio />}
label={
<div css={{ fontFamily: fontLabels[name] }}>
IBM Plex Mono
{fontLabels[name]}
</div>
}
/>
Expand Down
Loading
0