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 bcfec13 commit bdf2552Copy full SHA for bdf2552
src/js/index.js
@@ -2430,7 +2430,7 @@ function filterDials(searchTerm) {
2430
}
2431
2432
document.addEventListener('keydown', (event) => {
2433
- if (event.ctrlKey && event.shiftKey && event.key === 'F') {
+ if ((event.ctrlKey || event.metaKey) && event.key === 'f') {
2434
event.preventDefault(); // Prevent the default browser behavior
2435
searchContainer.classList.toggle('active');
2436
// focus it
0 commit comments