Skip to content

Commit

Permalink
Make Quality settings false by default, add Draw.IO diagrams to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jzy3d committed Jun 4, 2021
1 parent 19e95b9 commit dc897c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions doc/schemas.drawio

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ public class Quality {
* Enables alpha, color interpolation and antialiasing on lines, points, and polygons.
*/
public static final Quality Nicest() {
return Nicest.clone().setHiDPIEnabled(true);
return Nicest.clone().setHiDPIEnabled(true).setAnimated(false);
}

/**
* Enables alpha and color interpolation. Set HiDPI on by default
*/
public static final Quality Advanced() {
return Advanced.clone().setHiDPIEnabled(true);
return Advanced.clone().setHiDPIEnabled(true).setAnimated(false);
}

/**
* Enables color interpolation. Keep HiDPI off by default
*/
public static final Quality Intermediate() {
return Intermediate.clone();
return Intermediate.clone().setAnimated(false);
}

/**
Expand Down

0 comments on commit dc897c3

Please sign in to comment.