Skip to content

Commit 4aabcf2

Browse files
committed
fix order
1 parent f482087 commit 4aabcf2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

R/network.R

+8-8
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,6 @@ network <- function(
7474
height = 1,
7575
colour = bg_line_col
7676
) +
77-
ggforce::geom_circle(
78-
data = plot_data,
79-
mapping = ggplot2::aes(
80-
x0 = .data$x, y0 = .data$y,
81-
r = .data$r, fill = .data$fill
82-
),
83-
colour = NA
84-
) +
8577
ggplot2::geom_segment(
8678
data = line_data,
8779
mapping = ggplot2::aes(
@@ -90,6 +82,14 @@ network <- function(
9082
),
9183
colour = line_col
9284
) +
85+
ggforce::geom_circle(
86+
data = plot_data,
87+
mapping = ggplot2::aes(
88+
x0 = .data$x, y0 = .data$y,
89+
r = .data$r, fill = .data$fill
90+
),
91+
colour = NA
92+
) +
9393
ggplot2::scale_fill_identity() +
9494
ggplot2::coord_fixed() +
9595
theme_aRt(bg_col)

0 commit comments

Comments
 (0)