Skip to content

Commit cf82ab3

Browse files
committed
Textfields/textboxes are mentioned at the beginning of the error pop-up
1 parent 5e355ee commit cf82ab3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/MainFrame.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,8 @@ public void actionPerformed(ActionEvent e) {
8080

8181
changeWindowSize();
8282
} catch (NumberFormatException exception) {
83-
JOptionPane.showMessageDialog(this,
84-
"Letters, decimals, and symbols are not allowed in the textfields/textboxes!", "CANNOT RESIZE!",
85-
JOptionPane.ERROR_MESSAGE);
83+
JOptionPane.showMessageDialog(this, "Textfields/textboxes do not allow letters, decimals, and symbols!",
84+
"CANNOT RESIZE!", JOptionPane.ERROR_MESSAGE);
8685
}
8786
} else if (e.getSource() == resizable) {
8887
this.setResizable(!this.isResizable());

0 commit comments

Comments
 (0)