Skip to content

Commit

Permalink
Merge remote-tracking branch 'milQuant/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
lsteinmann committed Oct 30, 2023
2 parents 77f0692 + 2508aee commit 8962f0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shiny/source/modules/downloadModule.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ downloadPlotHandler <- function(input, output, session, dlPlot) {
filename = paste(format(Sys.Date(), "%Y%m%d"),
"_milQuant_plot.png", sep = ""),
content <- function(file) {
ggsave(file, plot = dlPlot(),
ggsave(file, plot = dlPlot() + Plot_Base_Theme + Plot_Base_Guide,
device = "png",
width = 25, height = 15, units = "cm")
}
Expand All @@ -24,7 +24,7 @@ downloadPlotHandler <- function(input, output, session, dlPlot) {
filename = paste(format(Sys.Date(), "%Y%m%d"),
"_milQuant_plot.pdf", sep = ""),
content <- function(file) {
ggsave(file, plot = dlPlot(),
ggsave(file, plot = dlPlot() + Plot_Base_Theme + Plot_Base_Guide,
device = "pdf",
width = 25, height = 15, units = "cm")
}
Expand Down

0 comments on commit 8962f0d

Please sign in to comment.