mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 13:20:51 +00:00
Fixed: Copying to clipboard does not support transparency
This commit is contained in:
@@ -70,6 +70,8 @@ public final class FlashPlayerPanel extends Panel implements Closeable, MediaDis
|
||||
|
||||
private float frameRate;
|
||||
|
||||
private Color bgColor;
|
||||
|
||||
@Override
|
||||
public boolean loopAvailable() {
|
||||
return false;
|
||||
@@ -435,4 +437,12 @@ public final class FlashPlayerPanel extends Panel implements Closeable, MediaDis
|
||||
public void removeEventListener(MediaDisplayListener listener) {
|
||||
listeners.remove(listener);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Color getBackgroundColor() {
|
||||
if (bgColor == null) {
|
||||
return Color.white;
|
||||
}
|
||||
return bgColor;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user