Skip to content

Commit

Permalink
Handle column extra args correctly when cbinding. Fixes #324.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmbecker committed May 25, 2022
1 parent de3e711 commit cd3206d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/tt_compatibility.R
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ combine_cinfo = function(..., new_total = NULL) {
if(is.null(new_total))
new_total <- sum(newcounts)
newexprs <- unlist(lapply(cinfs, col_exprs), recursive = FALSE)
newexargs <- unlist(lapply(cinfs, col_extra_args)) %||% vector("list", length(newcounts))
newexargs <- unlist(lapply(cinfs, col_extra_args), recursive = FALSE) %||% vector("list", length(newcounts))
newdisp <- any(vapply(cinfs, disp_ccounts, NA))
alltls <- lapply(cinfs, top_left)
newtl <- character()
Expand Down

0 comments on commit cd3206d

Please sign in to comment.