Skip to content
Snippets Groups Projects
Commit 61574038 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

remove debug messages for canvas and pd window zoom

parent e772fcf6
No related branches found
No related tags found
No related merge requests found
...@@ -442,7 +442,6 @@ function nw_create_pd_window_menus () { ...@@ -442,7 +442,6 @@ function nw_create_pd_window_menus () {
label: l("menu.zoomin"), label: l("menu.zoomin"),
click: function () { click: function () {
gui.Window.get().zoomLevel += 1; gui.Window.get().zoomLevel += 1;
pdgui.post("zoom level is " + gui.Window.get().zoomLevel);
}, },
key: "=", key: "=",
modifiers: "ctrl", modifiers: "ctrl",
...@@ -453,7 +452,6 @@ function nw_create_pd_window_menus () { ...@@ -453,7 +452,6 @@ function nw_create_pd_window_menus () {
label: l("menu.zoomout"), label: l("menu.zoomout"),
click: function () { click: function () {
gui.Window.get().zoomLevel -= 1; gui.Window.get().zoomLevel -= 1;
pdgui.post("zoom level is " + gui.Window.get().zoomLevel);
}, },
key: "-", key: "-",
modifiers: "ctrl", modifiers: "ctrl",
......
...@@ -833,7 +833,6 @@ function nw_create_patch_window_menus(name) { ...@@ -833,7 +833,6 @@ function nw_create_patch_window_menus(name) {
var z = gui.Window.get().zoomLevel; var z = gui.Window.get().zoomLevel;
if (z < 8) { z++; } if (z < 8) { z++; }
gui.Window.get().zoomLevel = z; gui.Window.get().zoomLevel = z;
pdgui.post("zoom level is " + gui.Window.get().zoomLevel);
}, },
key: "=", key: "=",
modifiers: "ctrl", modifiers: "ctrl",
...@@ -846,7 +845,6 @@ function nw_create_patch_window_menus(name) { ...@@ -846,7 +845,6 @@ function nw_create_patch_window_menus(name) {
var z = gui.Window.get().zoomLevel; var z = gui.Window.get().zoomLevel;
if (z > -7) { z--; } if (z > -7) { z--; }
gui.Window.get().zoomLevel = z; gui.Window.get().zoomLevel = z;
pdgui.post("zoom level is " + gui.Window.get().zoomLevel);
}, },
key: "-", key: "-",
modifiers: "ctrl", modifiers: "ctrl",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment