mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-06-28 08:37:31 -04:00
Jammer bugfix: now produces all the right channels
This commit is contained in:
parent
7cb38f858e
commit
f0fbc356ad
16 changed files with 120 additions and 121 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue