Skip to content

Commit

Permalink
Manual merge of John's corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
dl1ycf committed Nov 25, 2021
1 parent f58207c commit c8db333
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 355 deletions.
12 changes: 10 additions & 2 deletions actions.c
Original file line number Diff line number Diff line change
Expand Up @@ -969,13 +969,21 @@ int process_action(void *data) {
break;
case RSAT:
if(a->mode==PRESSED) {
sat_mode=RSAT_MODE;
if(sat_mode==RSAT_MODE) {
sat_mode=SAT_NONE;
} else {
sat_mode=RSAT_MODE;
}
g_idle_add(ext_vfo_update, NULL);
}
break;
case SAT:
if(a->mode==PRESSED) {
sat_mode=SAT_MODE;
if(sat_mode==SAT_MODE) {
sat_mode=SAT_NONE;
} else {
sat_mode=SAT_MODE;
}
g_idle_add(ext_vfo_update, NULL);
}
break;
Expand Down
Loading

0 comments on commit c8db333

Please sign in to comment.