Make sure that radio button text does not line break

This commit is contained in:
Reinhard Pointner 2018-03-05 19:51:21 +07:00
parent 2da49ef276
commit 1317aa99a7
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ public class PresetEditor extends JDialog {
presetNameHeader = new HeaderPanel();
inheritRadio = new JRadioButton("<html>Use <b>Original Files</b> selection</html>");
selectRadio = new JRadioButton("<html>Do <b>Select</b> files</html>");
inheritRadio = new JRadioButton("<html><nobr>Use <b>Original Files</b> selection</nobr></html>");
selectRadio = new JRadioButton("<html><nobr>Do <b>Select</b> files</nobr></html>");
pathInput = new JTextField(40);
filterEditor = createEditor();