From 6fbfa60f68fe97fa898f73a83590d7db6ed44b9c Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Sun, 29 Oct 2017 14:46:21 -0700 Subject: [PATCH 1/2] Fix grabbing cursor on mesh debugger. --- demo/client/html/mesh-debugger.html.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/client/html/mesh-debugger.html.hbs b/demo/client/html/mesh-debugger.html.hbs index 5fdb40d1..7e21cc4a 100644 --- a/demo/client/html/mesh-debugger.html.hbs +++ b/demo/client/html/mesh-debugger.html.hbs @@ -8,7 +8,7 @@ {{>partials/navbar.html isTool=true}} - +
From a7056460d09d49671c4c327ab46939007ea799eb Mon Sep 17 00:00:00 2001 From: Michael Bebenita Date: Sun, 29 Oct 2017 14:46:33 -0700 Subject: [PATCH 2/2] Fix cursor icon in Chrome. --- demo/client/css/pathfinder.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/demo/client/css/pathfinder.css b/demo/client/css/pathfinder.css index 63964b16..5e834b5e 100644 --- a/demo/client/css/pathfinder.css +++ b/demo/client/css/pathfinder.css @@ -106,9 +106,11 @@ button > svg path { } #pf-canvas.pf-draggable { cursor: grab; + cursor: -webkit-grab; } #pf-canvas.pf-draggable.pf-grabbing { cursor: grabbing; + cursor: -webkit-grabbing; } #pf-fps-label { color: white;