configPanel: remove tooltips for JTextArea

remove the unnecessary tool tip for JTextArea that can sometimes take up the entire screens width
This commit is contained in:
Seth
2018-06-15 18:42:31 -05:00
parent e83d09124a
commit 5fda73e85a

View File

@@ -494,11 +494,9 @@ public class ConfigPanel extends PluginPanel
public void focusLost(FocusEvent e)
{
changeConfiguration(config, textField, cd, cid);
textField.setToolTipText(textField.getText());
}
});
textField.setToolTipText(textField.getText());
item.add(textField, BorderLayout.SOUTH);
}