Skip to content

Commit

Permalink
Closes edzer#3
Browse files Browse the repository at this point in the history
Actually ... won't work since `col` is already a named argument. Need to update manual page as well
  • Loading branch information
MichaelChirico authored May 21, 2018
1 parent 083b86e commit bcf50d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/plot.Intervals_virtual.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ plot.Intervals_full <- function(
use_points = TRUE,
use_names = TRUE,
names_cex = 1,
col_text = NULL,
...
)
{
Expand Down Expand Up @@ -59,7 +60,8 @@ plot.Intervals_full <- function(
rownames( x ),
pos = 3, offset = .5,
cex = names_cex,
xpd = NA
xpd = NA,
col = text_col
)
}
if ( axes )
Expand Down

0 comments on commit bcf50d9

Please sign in to comment.