From 67aa92cf669a610ce1b8f5199941af70ffc53e2d Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Sun, 27 Nov 2016 16:36:49 -0500
Subject: [PATCH] fix #169: preferences shortcut disabled (regression from
 binding cmd-, to "pd dsp 1;")

---
 pd/nw/pdgui.js | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/pd/nw/pdgui.js b/pd/nw/pdgui.js
index 952188a80..a5e15e574 100644
--- a/pd/nw/pdgui.js
+++ b/pd/nw/pdgui.js
@@ -369,11 +369,6 @@ exports.keydown = function(cid, evt) {
         case 17: hack = "Control"; break;
         case 18: hack = "Alt"; break;
 
-        // keycode 188 = comma -- in contrast to / this is
-        // next to the period on most Latin keyboards, so
-        // much more convenient to quickly switch dsp off
-        // and then on again
-        case 188:
         // keycode 55 = 7 key (shifted = '/' on German keyboards)
         case 55:
             if (cmd_or_ctrl_key(evt)) {
-- 
GitLab