Skip to content

Commit

Permalink
Correcting error in conf.R fields access check
Browse files Browse the repository at this point in the history
  • Loading branch information
llaniewski authored Sep 4, 2023
1 parent 2ad527a commit fcf26c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conf.R
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ for (n in names(Actions)) { a = Actions[[n]]
pa_a2x = pa_ws*(pa_si-0.5)-0.7
pa_a2y = (pa_fi$boxmid/diff(pa_frange)-0.5)*pa_sl + pa_f/2
pa_col = rep("white",nrow(pa_fi))
pa_col[sr && (!is.na(sr))] = "green"
pa_col[sr & (!is.na(sr))] = "green"
pa_col[is.na(sr)] = "gray"
pa_col[sl] = "black"
pa_col[(!bufin) & (sr | sl)] = "red"
Expand Down

0 comments on commit fcf26c2

Please sign in to comment.