Skip to content

Commit 70f57d5

Browse files
authored
Merge pull request #12 from SchmidtPaul/patch-1
Fix: Add missing + operator before scale_fill_manual() in ggdesplot
2 parents b6f0efd + 5acb36d commit 70f57d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/ggdesplot.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ ggdesplot <- function(data,
459459
if(fill.type=="factor")
460460
out <- out +
461461
#geom_tile(aes_string(fill = fill.string)) +
462-
geom_tile(aes(fill = .data[[fill.string]]))
462+
geom_tile(aes(fill = .data[[fill.string]])) +
463463
scale_fill_manual(values=col.regions)
464464

465465
if(has.out1)

0 commit comments

Comments
 (0)