BrowserPrintMenuItem(ComboFrame frame) {
super(frame, "BrowserPrint");
}
public void actionPerformed(ActionEvent event) {
ComboFrame frame = getComboFrame();
AbstractImageBrowser browser = getBrowser();
File file = browser.getLeadSelectedFile();
if (file != null) {
Application.print(frame, file);
}