.osx: Disable swipe navigation in Chrome for mouse users

Closes #508.
This commit is contained in:
Michael Kühnel
2015-03-06 09:56:25 +01:00
committed by Mathias Bynens
parent f646752640
commit 58b68ea332
Vendored
+5 -1
View File
@@ -702,10 +702,14 @@ defaults write com.apple.messageshelper.MessageController SOInputLineSettings -d
defaults write com.google.Chrome ExtensionInstallSources -array "https://gist.githubusercontent.com/" "http://userscripts.org/*"
defaults write com.google.Chrome.canary ExtensionInstallSources -array "https://gist.githubusercontent.com/" "http://userscripts.org/*"
# Disable the all too sensitive backswipe
# Disable the all too sensitive backswipe on trackpads
defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false
defaults write com.google.Chrome.canary AppleEnableSwipeNavigateWithScrolls -bool false
# Disable the all too sensitive backswipe on Magic Mouse
defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool false
defaults write com.google.Chrome.canary AppleEnableMouseSwipeNavigateWithScrolls -bool false
# Use the system-native print preview dialog
defaults write com.google.Chrome DisablePrintPreview -bool true
defaults write com.google.Chrome.canary DisablePrintPreview -bool true