From bc2e7c46a9306224984d3956d98c81b984413453 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 4 Apr 2016 20:35:30 +0300 Subject: [PATCH] Disable pointer events on now top positioned grid. --- src/uxbox/ui/workspace/grid.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uxbox/ui/workspace/grid.cljs b/src/uxbox/ui/workspace/grid.cljs index 4ffc8c9a6f..061922301c 100644 --- a/src/uxbox/ui/workspace/grid.cljs +++ b/src/uxbox/ui/workspace/grid.cljs @@ -64,9 +64,9 @@ :x2 (:width page) :stroke grid-color :stroke-width (/ 0.5 zoom) - :opacity 0.25}])))] + :opacity 0.50}])))] (html - [:g.grid + [:g.grid {:style {:pointer-events "none"}} (for [tick vertical-ticks] (let [position (+ tick wb/canvas-start-x) line (vertical-line position tick)]