Skip to content

Commit 9034c5d

Browse files
committed
Small tweaks to #1773 (simplify check & add new visual baselines)
1 parent 24ffe8f commit 9034c5d

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

R/ggplotly.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ ggplotly.ggmatrix <- function(p = ggplot2::last_plot(), width = NULL,
127127
titleY = TRUE, titleX = TRUE) %>%
128128
hide_legend() %>%
129129
layout(dragmode = "select")
130-
if (robust_nchar(p$title %||% "") > 0) {
130+
if (robust_nchar(p$title) > 0) {
131131
s <- layout(s, title = p$title)
132132
}
133133
for (i in seq_along(p$xAxisLabels)) {
@@ -436,7 +436,7 @@ gg2list <- function(p, width = NULL, height = NULL,
436436
font = text2font(theme$text)
437437
)
438438
# main plot title
439-
if (robust_nchar(plot$labels$title %||% "") > 0) {
439+
if (robust_nchar(plot$labels$title) > 0) {
440440
gglayout$title <- list(
441441
text = faced(plot$labels$title, theme$plot.title$face),
442442
font = text2font(theme$plot.title),

tests/figs/deps.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
- vdiffr-svg-engine: 1.0
2-
- vdiffr: 0.3.1
2+
- vdiffr: 0.3.1.9000
33
- freetypeharfbuzz: 0.2.5

tests/figs/labels/factor-labels.svg

+1
Loading

tests/figs/labels/labs-element-blank.svg

+1
Loading

tests/testthat/test-ggplot-labels.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ test_that("factor labels work", {
4545
p <- ggplot(diamonds, aes(cut)) +
4646
geom_bar() +
4747
scale_x_discrete("Cut", labels=factor(letters[1:5]))
48-
plotly_build(p)
48+
b <- expect_doppelganger_built(p, "factor-labels")
4949
})
5050

5151
test_that("empty labels work", {
5252
p <- ggplot(iris, aes(Petal.Length, Sepal.Width, color = Species)) +
5353
geom_point() +
54-
xlab(element_blank())
55-
plotly_build(p)
54+
labs(x = element_blank(), y = element_blank())
55+
b <- expect_doppelganger_built(p, "labs-element-blank")
5656
})

0 commit comments

Comments
 (0)