You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add interfaceTextSize setting to global-settings.ts with small/medium/large options
- Create InterfaceSettings component for UI configuration
- Add Interface section to Settings view
- Implement dynamic CSS classes for text size adjustment
- Add message handler for persisting text size preference
- Add translation strings for the new interface settings
- Apply text size class to root App component
This addresses issue #8100 by providing a built-in text size setting that only affects Roo Code's UI without changing VS Code's zoom level or editor font size.
Copy file name to clipboardExpand all lines: webview-ui/src/i18n/locales/en/settings.json
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@
31
31
"slashCommands": "Slash Commands",
32
32
"prompts": "Prompts",
33
33
"experimental": "Experimental",
34
+
"interface": "Interface",
34
35
"language": "Language",
35
36
"about": "About Roo Code"
36
37
},
@@ -875,5 +876,15 @@
875
876
"output": "Output",
876
877
"cacheReads": "Cache reads"
877
878
}
879
+
},
880
+
"interface": {
881
+
"title": "Interface",
882
+
"textSize": {
883
+
"label": "Text Size",
884
+
"description": "Adjust the text size for Roo Code's interface. This only affects Roo Code's UI and does not change VS Code's zoom level or editor font size.",
0 commit comments