aboutsummaryrefslogtreecommitdiffstats
path: root/classes/Bowelyzer.sc
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2016-07-14 13:19:07 +0200
committerDavid Runge <dave@sleepmap.de>2016-07-14 13:19:07 +0200
commit94f11724534098ac0f08bb6d084d35979f673e5a (patch)
tree1a0981d7b751a65fd8b9264ba5cb359ce4d1429f /classes/Bowelyzer.sc
parent32f7a4f35d3b63ef9f12f396cd7fb7f9dc18a351 (diff)
downloadbowelyzer-94f11724534098ac0f08bb6d084d35979f673e5a.tar.gz
bowelyzer-94f11724534098ac0f08bb6d084d35979f673e5a.tar.bz2
bowelyzer-94f11724534098ac0f08bb6d084d35979f673e5a.tar.xz
bowelyzer-94f11724534098ac0f08bb6d084d35979f673e5a.zip
classes/BowelyzerGUI.sc: Setting channel View names type String, too. classes/Bowelyzer.sc: Casting update type String, when checking for empty String on rename.
Diffstat (limited to 'classes/Bowelyzer.sc')
-rw-r--r--classes/Bowelyzer.sc2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Bowelyzer.sc b/classes/Bowelyzer.sc
index cea4c55..1841cb7 100644
--- a/classes/Bowelyzer.sc
+++ b/classes/Bowelyzer.sc
@@ -63,7 +63,7 @@ Bowelyzer{
switch(type,
\name,{
// if the name is not empty and not used, change to it
- if((update != "") && config.config.at(\inputs).includesKey(update).not, {
+ if((update.asString != "") && config.config.at(\inputs).includesKey(update).not, {
//move the controls
config.config.at(\controls).put(update.asSymbol, config.config.at(\controls).at(name));
config.config.at(\controls).removeAt(name.asSymbol);