From c2900c926dda3e0d2736ea947474b57c7dcbdde1 Mon Sep 17 00:00:00 2001 From: Bob Zeleznik Date: Sat, 27 Apr 2019 14:37:47 -0400 Subject: fixed markers to be on top of ink --- src/client/views/InkingCanvas.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/client/views/InkingCanvas.tsx b/src/client/views/InkingCanvas.tsx index 47ee8eb85..83836aa59 100644 --- a/src/client/views/InkingCanvas.tsx +++ b/src/client/views/InkingCanvas.tsx @@ -148,14 +148,15 @@ export class InkingCanvas extends React.Component { } return paths; }, [] as JSX.Element[]); - return [ - {paths.filter(path => path.props.tool === InkTool.Highlighter)} - , - - {paths.filter(path => path.props.tool !== InkTool.Highlighter)} - ]; + return [ + + {paths.filter(path => path.props.tool !== InkTool.Highlighter)} + , + + {paths.filter(path => path.props.tool === InkTool.Highlighter)} + ]; } render() { -- cgit v1.2.3-70-g09d2