Skip to content

Commit

Permalink
Change Mute keybind from 'm' to 'o'
Browse files Browse the repository at this point in the history
'o' does not appear to be used at all (shift+o is, but that seems like a legacy feature)
  • Loading branch information
FlaminSarge committed Apr 9, 2024
1 parent b7ef0c2 commit 37c6037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/modules/keyboardNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ module.options = {
toggleMuteVideo: {
type: 'keycode',
requiresModules: [ShowImages],
value: [77, false, false, false, false], // m
value: [79, false, false, false, false], // o
description: 'keyboardNavToggleMuteVideoDesc',
title: 'keyboardNavToggleMuteVideoTitle',
callback() { videoToggleMute(); },
Expand Down Expand Up @@ -680,7 +680,7 @@ module.options = {
toggleCommentNavigator: {
type: 'keycode',
requiresModules: [CommentNavigator],
value: [78, false, false, false, false], // N
value: [78, false, false, false, false], // n
description: 'keyboardNavToggleCommentNavigatorDesc',
title: 'keyboardNavToggleCommentNavigatorTitle',
callback() { CommentNavigator.toggle(true); },
Expand Down

0 comments on commit 37c6037

Please sign in to comment.