Skip to content

Commit 53b9222

Browse files
committed
fix: Adjust font aliasing handling in message processing
1 parent 89f2dcf commit 53b9222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webview-ui/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const App = () => {
7878

7979
if (message.type === "fontAliasing") {
8080
const value = message.value as string | undefined
81-
let smoothingValue = "unset" // Default to letting the browser decide
81+
let smoothingValue = "unset"
8282

8383
if (value === "antialiased" || value === "subpixel-antialiased" || value === "none") {
8484
smoothingValue = value

0 commit comments

Comments
 (0)