Skip to content

Commit

Permalink
fix: inverted red/blue colors in editor
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Aug 15, 2022
1 parent 460969c commit d8d25a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/actelion/research/gwt/gui/viewer/GWTDepictor.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ protected double getLineWidth() {

@Override
protected void setRGB(int rgb) {
currentColor = CssColor.make((rgb&0xff), (rgb&0xff00)>>8, (rgb&0xff0000)>>16);
currentColor = CssColor.make((rgb&0xff0000)>>16, (rgb&0xff00)>>8, (rgb&0xff));
}

}

0 comments on commit d8d25a3

Please sign in to comment.