*/
@Override
public void textInputFinished(String text) {
if (text != null && text.trim().length() > 0) {
try {
new FulltextSearchWindow(text, God.appWindow);
} catch (Exception exception) {
LogUtils.log(exception);
SwingUtils.showError(null, "Couldn't search for items!");
}
}