The line of code below displays a dialog box with two buttons: Yes and No. I want those two buttons to be at least 3 times the actual default size. I understand I can create a customized JFrame and add button and set the Size but I have scores of dialog boxes; does not seems practical.
JOptionPane.showConfirmDialog(null, "Did you eat", "Confirmation", JOptionPane.YES_NO_OPTION);
The reason why I want to make the buttons larger is because I increased the font size of the dialog boxes (one line of code impacted all the dialog boxes in my code). And the small (default) size of the buttons look akward now compared to the the verbage.
So how can I manipulate JOptionPane dialog box's button's sizes?