X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FFinder.java;fp=src%2Fjalview%2Fgui%2FFinder.java;h=1236c5ac4b677d61b5798a3c7343a311164990de;hb=c0501eaa85c0594f9275766f64de8ea44a59c368;hp=358d9a417936c670e7751852b5a187691a1829a1;hpb=04c8f7bff663aa469127e9eed4164e02933782f1;p=jalview.git diff --git a/src/jalview/gui/Finder.java b/src/jalview/gui/Finder.java index 358d9a4..1236c5a 100755 --- a/src/jalview/gui/Finder.java +++ b/src/jalview/gui/Finder.java @@ -139,7 +139,7 @@ public class Finder extends GFinder { title += " " + scope; } - Desktop.addInternalFrame(frame, title, MY_WIDTH, MY_HEIGHT); + Desktop.addInternalFrame(frame, title, Desktop.FRAME_MAKE_VISIBLE, MY_WIDTH, MY_HEIGHT, Desktop.FRAME_ALLOW_RESIZE, Desktop.FRAME_ALLOW_ANY_SIZE); frame.setMinimumSize(new Dimension(MIN_WIDTH, MIN_HEIGHT)); searchBox.getComponent().requestFocus(); } @@ -195,7 +195,7 @@ public class Finder extends GFinder */ boolean getFocusedViewport() { - if (focusFixed || Desktop.desktop == null) + if (focusFixed || Desktop.getDesktopPane() == null) { if (ap != null && av != null) { @@ -207,7 +207,7 @@ public class Finder extends GFinder } // now checks further down the window stack to fix bug // https://mantis.lifesci.dundee.ac.uk/view.php?id=36008 - JInternalFrame[] frames = Desktop.desktop.getAllFrames(); + JInternalFrame[] frames = Desktop.getDesktopPane().getAllFrames(); for (int f = 0; f < frames.length; f++) { JInternalFrame alignFrame = frames[f];