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.
1 parent 5b7b8d8 commit 3e7657fCopy full SHA for 3e7657f
1 file changed
client/modules/IDE/components/Preferences/index.jsx
@@ -179,6 +179,13 @@ export default function Preferences() {
179
onClick={() => {
180
fontSizeInputRef.current?.select();
181
}}
182
+ onKeyDown={(event) => {
183
+ if (event.key === 'ArrowUp') {
184
+ increaseFontSize();
185
+ } else if (event.key === 'ArrowDown') {
186
+ decreaseFontSize();
187
+ }
188
+ }}
189
/>
190
</form>
191
<button
0 commit comments