Fix reported problem for [2761420] - Advanced Search
https://sourceforge.net/tracker/index.php?func=detail&aid=2761420&group_id=176962&atid=879332
This commit is contained in:
parent
84f8222fd6
commit
aca590117d
|
@ -50,10 +50,11 @@ public class DocumentSearch extends AbstractDocumentSearch {
|
|||
protected boolean openWindow(int windowId, MQuery query) {
|
||||
final AWindow frame = new AWindow();
|
||||
AEnv.addToWindowManager(frame);
|
||||
final boolean ok = frame.initWindow(windowId, query);
|
||||
frame.pack();
|
||||
AEnv.showCenterScreen(frame);
|
||||
return ok;
|
||||
if (frame.initWindow(windowId, query)) {
|
||||
frame.pack();
|
||||
AEnv.showCenterScreen(frame);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue