String panelName = file.getName();
if(panelName.length()>16){
panelName = file.getName().substring(0, 14)+"..";
}
inputTabbedPanel.addTab(panelName, inputPanel, null, file.getName());
inputTabbedPanel.addCloseableTabbedPaneListener(new CleanClosedTabbedPanelListener(inputTabbedPanel));
}
}catch(ThumbnailCreationException tce){
log.error(GettextResource.gettext(Configuration.getInstance().getI18nResourceBundle(),"Error: "), tce);
}
}