Skip to content

Commit

Permalink
Flip order
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Aug 28, 2022
1 parent 75fa45e commit f26e48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/mutate.R
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ mutate.data.frame <- function(.data,
}

out <- dplyr_col_select(out, cols_retain)
attr(out, "pillar_focus") <- intersect(cols_retain, c(cols_expr, cols_used))
attr(out, "pillar_focus") <- intersect(c(cols_expr, cols_used), cols_retain)
out
}

Expand Down

0 comments on commit f26e48e

Please sign in to comment.