Преглед изворни кода

Don't register default fonts with google if `google` is explicitly FALSE

tags/v0.3.0
Garrick Aden-Buie пре 6 година
родитељ
комит
d358596c70
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      R/ggplot2.R

+ 1
- 1
R/ggplot2.R Прегледај датотеку

@@ -673,7 +673,7 @@ register_font <- function(
"Yanone Kaffeesatz"
)
font_found <- family %in% sysfonts::font_families()
is_google_font <- identical(google, TRUE) || is_default_font
is_google_font <- identical(google, TRUE) || (missing(google) && is_default_font)
if (is_google_font) {
tryCatch(
{

Loading…
Откажи
Сачувај