6

Is it possible to disable magic mouse back-forward gesture only in XCODE? While in browser it is fine, in XCODE it just totaly unwanted feature for me.

Nik
  • 179

1 Answers1

5

In short: disable it on the mouse:

defaults write com.apple.dt.Xcode AppleEnableMouseSwipeNavigateWithScrolls -bool NO

for trackpads use:

defaults write com.apple.dt.Xcode AppleEnableSwipeNavigateWithScrolls -bool NO

Source: [https://stackoverflow.com/questions/20024231/prevent-disable-xcode-scroll-navigation]