mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 06:52:41 +01:00
Update TooltipMenu.ios.js
This commit is contained in:
parent
65e9a7087f
commit
19f1cd9e92
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ const ToolTipMenu = (props, ref) => {
|
|||
}}
|
||||
style={buttonStyle}
|
||||
>
|
||||
{props.onPress ? <TouchableOpacity onPress={props.onPress}>{props.children}</TouchableOpacity> : props.children}
|
||||
{props.onPress ? <TouchableOpacity onPressOut={props.onPress}>{props.children}</TouchableOpacity> : props.children}
|
||||
</ContextMenuButton>
|
||||
) : (
|
||||
<ContextMenuView
|
||||
|
@ -82,7 +82,7 @@ const ToolTipMenu = (props, ref) => {
|
|||
}
|
||||
: {})}
|
||||
>
|
||||
{props.onPress ? <TouchableOpacity onPress={props.onPress}>{props.children}</TouchableOpacity> : props.children}
|
||||
{props.onPress ? <TouchableOpacity onPressOut={props.onPress}>{props.children}</TouchableOpacity> : props.children}
|
||||
</ContextMenuView>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue