Skip to content

Commit 5857d59

Browse files
committed
fixed repainting icons.
1 parent 1583921 commit 5857d59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/ss/editor/util/svg/SvgImageLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ private void copyColorToBytes(final int[] argbData, final byte[] imageData) {
144144
int green = (argb >> 8) & 0xff;
145145
int blue = (argb) & 0xff;
146146

147-
if (overrideColor != null && alpha < 255) {
147+
if (overrideColor != null) {
148148
red = (int) (overrideColor.getRed() * 255);
149149
green = (int) (overrideColor.getGreen() * 255);
150150
blue = (int) (overrideColor.getBlue() * 255);

0 commit comments

Comments
 (0)