mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 05:18:01 +02:00
rtree: Actually pin the node when pinning.
How embarrassing.
This commit is contained in:
parent
63062511f6
commit
34fd094b3b
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ _cairo_rtree_pin (cairo_rtree_t *rtree, cairo_rtree_node_t *node)
|
|||
{
|
||||
if (! node->pinned) {
|
||||
cairo_list_move (&node->link, &rtree->pinned);
|
||||
node->pinned = 0;
|
||||
node->pinned = 1;
|
||||
}
|
||||
|
||||
return node;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue