mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-08-21 21:17:51 +00:00
Jammer bugfix: now produces all the right channels
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user