Skip to content

Commit

Permalink
Revert "Revert "Remove old copy hack for macOS packaged builds""
Browse files Browse the repository at this point in the history
This reverts commit 43e5541.

fix brave#10214
  • Loading branch information
darkdh authored and dfperry5 committed Aug 18, 2017
1 parent 1e1061a commit 88db524
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
9 changes: 0 additions & 9 deletions app/localShortcuts.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,6 @@ module.exports.register = (win) => {
simpleWebContentEvents.push(
['Cmd+Alt+U', messages.SHORTCUT_ACTIVE_FRAME_VIEW_SOURCE]
)

if (process.env.NODE_ENV !== 'development') {
// We're in Darwin and release or test mode...
// We disable for development mode because Browser level dev tools copy doesn't work.
// Workaround for #1060
simpleWebContentEvents.push(
['Cmd+C', messages.SHORTCUT_ACTIVE_FRAME_COPY]
)
}
}

// Tab ordering shortcuts
Expand Down
1 change: 0 additions & 1 deletion js/constants/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ const messages = {
SHORTCUT_ACTIVE_FRAME_FORWARD: _,
SHORTCUT_ACTIVE_FRAME_BOOKMARK: _,
SHORTCUT_ACTIVE_FRAME_REMOVE_BOOKMARK: _,
SHORTCUT_ACTIVE_FRAME_COPY: _,
SHORTCUT_ACTIVE_FRAME_FIND_NEXT: _,
SHORTCUT_ACTIVE_FRAME_FIND_PREV: _,
// Frame management shortcuts
Expand Down
2 changes: 1 addition & 1 deletion js/stores/windowStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ ipc.on(messages.SHORTCUT_OPEN_CLEAR_BROWSING_DATA_PANEL, (e) => {
})
})

const frameShortcuts = ['stop', 'reload', 'zoom-in', 'zoom-out', 'zoom-reset', 'toggle-dev-tools', 'clean-reload', 'view-source', 'mute', 'save', 'print', 'show-findbar', 'copy', 'find-next', 'find-prev']
const frameShortcuts = ['stop', 'reload', 'zoom-in', 'zoom-out', 'zoom-reset', 'toggle-dev-tools', 'clean-reload', 'view-source', 'mute', 'save', 'print', 'show-findbar', 'find-next', 'find-prev']
frameShortcuts.forEach((shortcut) => {
// Listen for actions on the active frame
ipc.on(`shortcut-active-frame-${shortcut}`, (e, args) => {
Expand Down

0 comments on commit 88db524

Please sign in to comment.