Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@
border: 4px solid #eee;
border-color: #eee transparent #eee transparent;
animation: spinning-loading-indicator 1s linear infinite;

@media (prefers-reduced-motion) {
animation: none;
content: "Loading…";
border: none;
}
}

@keyframes spinning-loading-indicator {
Expand Down
3 changes: 2 additions & 1 deletion node-graph/nodes/vector/src/vector_nodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,8 @@ pub mod extrude_algorithms {

let mut next_segment = vector.segment_domain.next_id();
for (index, &point) in points.iter().enumerate().take(first_half_points) {
if point != Found::Both {
// Extrema are single connected points or points with both psotive and negative values
if !matches!(point, Found::Both | Found::Positive | Found::Negative) {
continue;
}

Expand Down
Loading