Merge remote-tracking branch 'origin/develop_fingerpunch'
This commit is contained in:
commit
37ebf92038
|
|
@ -195,7 +195,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#endif
|
#endif
|
||||||
#if defined(FP_TRACKBALL_RIGHT_ONLY)
|
#if defined(FP_TRACKBALL_RIGHT_ONLY)
|
||||||
#define POINTING_DEVICE_RIGHT // one pointing device, on the right
|
#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
|
#endif
|
||||||
#if defined(FP_CIRQUE_LEFT_ONLY)
|
#if defined(FP_CIRQUE_LEFT_ONLY)
|
||||||
#define POINTING_DEVICE_LEFT // one pointing device, on the left
|
#define POINTING_DEVICE_LEFT // one pointing device, on the left
|
||||||
|
|
|
||||||
|
|
@ -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
|
// I always type the shift keys too fast, so tapping term of 200 is way too high
|
||||||
case LSFT_T(KC_T):
|
case LSFT_T(KC_T):
|
||||||
case RSFT_T(KC_N):
|
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;
|
return 150;
|
||||||
#else
|
|
||||||
return 75;
|
|
||||||
#endif
|
|
||||||
default:
|
default:
|
||||||
return TAPPING_TERM;
|
return TAPPING_TERM;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue