hark: flip hovermarker flag

This commit is contained in:
James Acklin 2021-03-18 20:36:28 -04:00
parent e128d88864
commit 2776f783ed
2 changed files with 5 additions and 5 deletions

View File

@ -207,7 +207,7 @@ const MessageWrapper = (props) => {
<Box
py='1'
backgroundColor={
hovering && props.hoverMarker !== false ? 'washedGray' : 'transparent'
hovering && !props.hideHover ? 'washedGray' : 'transparent'
}
position='relative'
{...bind}
@ -235,7 +235,7 @@ interface ChatMessageProps {
api: GlobalApi;
highlighted?: boolean;
renderSigil?: boolean;
hoverMarker?: boolean;
hideHover?: boolean;
innerRef: (el: HTMLDivElement | null) => void;
}
@ -268,7 +268,7 @@ class ChatMessage extends Component<ChatMessageProps> {
highlighted,
showOurContact,
fontSize,
hoverMarker
hideHover
} = this.props;
let { renderSigil } = this.props;
@ -306,7 +306,7 @@ class ChatMessage extends Component<ChatMessageProps> {
scrollWindow,
highlighted,
fontSize,
hoverMarker
hideHover
};
const unreadContainerStyle = {

View File

@ -136,7 +136,7 @@ const GraphNodeContent = ({
msg={post}
fontSize='0'
pt='2'
hoverMarker={false}
hideHover={true}
/>
</Row>
);