We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9689fe + 3c45d46 commit f24bf93Copy full SHA for f24bf93
1 file changed
client/modules/IDE/components/Preferences/index.jsx
@@ -249,6 +249,13 @@ export default function Preferences() {
249
onClick={() => {
250
fontSizeInputRef.current?.select();
251
}}
252
+ onKeyDown={(event) => {
253
+ if (event.key === 'ArrowUp') {
254
+ increaseFontSize();
255
+ } else if (event.key === 'ArrowDown') {
256
+ decreaseFontSize();
257
+ }
258
+ }}
259
/>
260
</form>
261
<button
0 commit comments