From a81c9ef55aeaf07cacedf7f1cbebfce0b53d09c8 Mon Sep 17 00:00:00 2001 From: Albert Graef <aggraef@gmail.com> Date: Mon, 2 Nov 2020 22:06:37 +0100 Subject: [PATCH] Increase the opacity of the edit mode grid to make it easier to see when not in snap mode. --- pd/nw/pdgui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js index 8c84e9934..9a3685d09 100644 --- a/pd/nw/pdgui.js +++ b/pd/nw/pdgui.js @@ -1449,7 +1449,7 @@ var create_editmode_bg = function(cid, svg_elem) { // if snap-to-grid isn't turned on, just use cell size of 10 and make the // grid partially transparent size = grid ? size : 10; - opacity_str = '"' + (grid ? 1 : 0.25) + '"'; + opacity_str = '"' + (grid ? 1 : 0.4) + '"'; cell_data_str = ['"', "M", size, 0, "L", 0, 0, 0, size, '"'].join(" "); head = ['<svg xmlns="http://www.w3.org/2000/svg" ', -- GitLab