Jammer bugfix: now produces all the right channels

This commit is contained in:
furrtek 2017-01-17 14:27:37 +00:00
parent 7cb38f858e
commit f0fbc356ad
16 changed files with 120 additions and 121 deletions

View file

@ -585,7 +585,7 @@ bool Checkbox::set_value(const bool value) {
set_dirty();
if( on_select ) {
on_select(*this);
on_select(*this, value_);
return true;
}
@ -680,7 +680,7 @@ bool Checkbox::on_touch(const TouchEvent event) {
value_ = not value_;
set_dirty();
if( on_select ) {
on_select(*this);
on_select(*this, value_);
}
return true;