Skip to content

Commit

Permalink
allowing bottom topleft
Browse files Browse the repository at this point in the history
  • Loading branch information
Melkiades committed Oct 16, 2023
1 parent 5c67515 commit cf27faf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/tt_toString.R
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,9 @@ get_formatted_fnotes <- function(tt) {
if(lentl == 0) {
tl <- rep("", nli)
} else if(lentl > nli) {
tl <- paste0(tl, collapse = "\n")
tl_tmp <- paste0(tl, collapse = "\n")
tl <- rep("", nli)
tl[length(tl)] <- tl_tmp
} else if (lentl < nli) {
# We want topleft alignment that goes to the bottom!
tl <- c(rep("", nli - lentl), tl)
Expand Down

0 comments on commit cf27faf

Please sign in to comment.