3

My trackpad started to work incorrectly: when I double-clicked and draged, I couldn't select text anymore. Even though when I just double-clicked a word, it was being selected as usual.

I tried to troubleshoot this issue and went into Trackpad preferences. I tapped "Tap to click" option, and now I cannot click anything at all! And I cannot turn the option back ON. Also, I don't have a mouse to connect...

Question

How to turn "tap to click" back ON using only keyboard?

Versions

  • Mac OS X 10.14.6 Build 18G3020
  • MBP 13" 2017

1 Answers1

5

You can do it via Terminal.app with those commands:

defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
defaults write com.apple.AppleMultitouchTrackpad Clicking -bool true

You may need to restart the System after that. Or, run the following:

/System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u
RexYuan
  • 247