Skip to content

Commit

Permalink
fix: change update prioriy in render
Browse files Browse the repository at this point in the history
  • Loading branch information
NewByVector committed Jul 6, 2023
1 parent 90324fc commit 64c256f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/x6/src/renderer/queueJob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ export interface Job {
}

export enum JOB_PRIORITY {
RenderEdge = /**/ 1 << 1,
RenderNode = /**/ 1 << 2,
Update = /* */ 1 << 3,
Update = /* */ 1 << 1,
RenderEdge = /**/ 1 << 2,
RenderNode = /**/ 1 << 3,
PRIOR = /* */ 1 << 20,
}

Expand Down

0 comments on commit 64c256f

Please sign in to comment.