Merge remote-tracking branch 'origin/develop_fingerpunch'

This commit is contained in:
Sadek Baroudi 2025-07-20 12:52:08 -07:00
commit 37ebf92038
2 changed files with 1 additions and 6 deletions

View File

@ -195,7 +195,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#endif
#if defined(FP_TRACKBALL_RIGHT_ONLY)
#define POINTING_DEVICE_RIGHT // one pointing device, on the right
#define POINTING_DEVICE_INVERT_X_RIGHT // for trackball on the right
#define POINTING_DEVICE_INVERT_X // for trackball on the right
#endif
#if defined(FP_CIRQUE_LEFT_ONLY)
#define POINTING_DEVICE_LEFT // one pointing device, on the left

View File

@ -173,12 +173,7 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
// I always type the shift keys too fast, so tapping term of 200 is way too high
case LSFT_T(KC_T):
case RSFT_T(KC_N):
#ifdef KEYBOARD_fingerpunch_personal_smallcat
// There is an exception for smallcat, since the tapping term seems to be too short only on that board
return 150;
#else
return 75;
#endif
default:
return TAPPING_TERM;
}