All .rtf and .Rtf and .RTF files are selectable now.

This commit is contained in:
dchandler 2003-10-12 18:11:50 +00:00
parent 35209ce7fd
commit 8dbfff17e1

View file

@ -474,7 +474,7 @@ class ConvertDialog extends JDialog
{
public boolean accept(File f)
{
return (f.isDirectory() || f.getName().endsWith(".rtf"));
return (f.isDirectory() || f.getName().toUpperCase().endsWith(".RTF"));
}
public String getDescription()