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.
Asked
Active
Viewed 2,075 times
1 Answers
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]
lowlands42
- 51