1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* remove DnD reminders

This commit is contained in:
Reinhard Pointner 2013-11-15 09:55:08 +00:00
parent 0a99a8f93d
commit 2b09bd1414

View File

@ -10,7 +10,6 @@ import javax.swing.AbstractAction;
import javax.swing.Icon;
import javax.swing.JFileChooser;
import net.sourceforge.filebot.Analytics;
import net.sourceforge.filebot.ResourceManager;
import net.sourceforge.filebot.Settings;
import net.sourceforge.filebot.ui.transfer.TransferablePolicy.TransferAction;
@ -54,11 +53,6 @@ public class LoadAction extends AbstractAction {
chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
chooser.setMultiSelectionEnabled(true);
// tell noobs to use drag-n-drop (but avoid annoying people that got it from the app stores)
if (Analytics.isEnabled()) {
UILogger.info("Why do you not use drag-and-drop to directly drop in your files?");
}
if (chooser.showOpenDialog(null) != JFileChooser.APPROVE_OPTION) {
return;
}