From 7395372f78e1ee7f36ebf215ed97fb3d759b2407 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Fri, 29 Apr 2016 16:52:42 -0400 Subject: [PATCH] fix jwilkes/purr-data#25 just use "default" pointer icon for runtime "clickable" items to disambiguate the editmode icon --- pd/nw/pdgui.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index 6f45fed4b..9ad09d894 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -918,7 +918,14 @@ function gui_canvas_cursor(cid, pd_event_type) { c = "default"; break; case "cursor_runmode_clickme": - c = "pointer"; + // The "pointer" icon seems the natural choice for "clickme" here, + // but unfortunately it creates ambiguity with the default editmode + // pointer icon. Not sure what the best solution is, but for now + // we'll just use "default" for clickme. That creates another + // ambiguity, but it's less of an issue since most of the + // clickable runtime items are fairly obvious anyway. + //c = "pointer"; + c = "default"; break; case "cursor_runmode_thicken": c = "inherit"; -- GitLab