Skip to content

Commit

Permalink
Tweak gaps check to be big and translucent marks
Browse files Browse the repository at this point in the history
  • Loading branch information
flurick committed Jan 3, 2023
1 parent f581460 commit 18c2491
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toonz/sources/toonzlib/stagevisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ static void buildAutocloseImage(
points[0] = p1;
points[1] = 0.5 * (p1 + p2);
points[2] = p2;
points[0].thick = points[1].thick = points[2].thick = 0.0;
points[0].thick = points[1].thick = points[2].thick = 20.0;
TStroke *auxStroke = new TStroke(points);
auxStroke->setStyle(2);
vaux->addStroke(auxStroke);
Expand All @@ -753,7 +753,7 @@ static void drawAutocloses(TVectorImage *vi, TVectorRenderData &rd) {
static TPalette *plt = 0;
if (!plt) {
plt = new TPalette();
plt->addStyle(TPixel::Magenta);
plt->addStyle(TPixelRGBM32(0xff, 0, 0xff, 0xa0));
}

std::vector<std::pair<int, double>> startPoints, endPoints;
Expand Down

0 comments on commit 18c2491

Please sign in to comment.