- Fixed text issue with GainControlAllEffect

This commit is contained in:
bonefish 2016-07-15 21:05:19 -05:00
parent 2ecadbc30b
commit 47ed193dff

View file

@ -51,6 +51,9 @@ public class GainControlAllEffect extends ContinuousEffectImpl {
@Override
public String getText(Mode mode) {
return "Gain control of " + filter;
StringBuilder sb = new StringBuilder();
sb.append("Gain control of ").append(filter.getMessage());
return sb.toString();
//return "Gain control of " + filter;
}
}