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) {
|
protected boolean openWindow(int windowId, MQuery query) {
|
||||||
final AWindow frame = new AWindow();
|
final AWindow frame = new AWindow();
|
||||||
AEnv.addToWindowManager(frame);
|
AEnv.addToWindowManager(frame);
|
||||||
final boolean ok = frame.initWindow(windowId, query);
|
if (frame.initWindow(windowId, query)) {
|
||||||
frame.pack();
|
frame.pack();
|
||||||
AEnv.showCenterScreen(frame);
|
AEnv.showCenterScreen(frame);
|
||||||
return ok;
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue