use of com.mucommander.ui.main.LocationTextField in project mucommander by mucommander.
the class QuickFindAction method performAction.
@Override
public void performAction() {
AbstractFile currentFile = mainFrame.getActivePanel().getCurrentFolder();
FileURL searchURL = SearchUtils.toSearchURL(currentFile);
LocationTextField locationTextField = mainFrame.getActivePanel().getLocationTextField();
locationTextField.setText(searchURL.toString());
locationTextField.requestFocus();
}
Aggregations