Speed up shell nav button presses

zio/stable
Paul Frazee 2022-10-11 09:18:24 -05:00
parent ba6580101e
commit 4143167ab7
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,8 @@ const Btn = ({
return ( return (
<TouchableOpacity <TouchableOpacity
style={styles.ctrl} style={styles.ctrl}
onPress={onPress} onPress={onLongPress ? onPress : undefined}
onPressIn={onLongPress ? undefined : onPress}
onLongPress={onLongPress}> onLongPress={onLongPress}>
{notificationCount ? ( {notificationCount ? (
<View style={styles.ctrlCount}> <View style={styles.ctrlCount}>