Re: Photo-video rendering plug-in
The standard photo panel, like the resizable photo panel, does not prevent other windows from appearing above it.If it's not too much bother, could you please fix it so that the render window is not always on top? Being always on top, it's hiding important pop-ups that need attention.
It's probably not a big operation, since it used to behave like a normal window in earlier versions.
Code: Select all
if (currentPhotoPanel == null) {
new AdvancedPhotoPanel(...);
} else {
SwingUtilities.getWindowAncestor(currentPhotoPanel).toFront();
}