Re: Photo-video rendering plug-in

by enkonyito » Sat Jun 08, 2019 2:53 am

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.
The standard photo panel, like the resizable photo panel, does not prevent other windows from appearing above it.
Image

Since the first version of the plug-in, if you try to open another photo panel, the one that is already open is put in front.

Code: Select all

if (currentPhotoPanel == null) {
  new AdvancedPhotoPanel(...);
} else {
  SwingUtilities.getWindowAncestor(currentPhotoPanel).toFront();
}
Since I only use one screen, I did not notice any particular problem.
If you use 2 or more screens, what behavior do you get by displaying the resizable photo panel (full screen or not) in a window other than the plan and trying to open another photo panel?

Enko