Skip to content

Commit

Permalink
Screenshot updated. Fixed str-to-hex tool's width
Browse files Browse the repository at this point in the history
  • Loading branch information
ukarim committed Feb 15, 2024
1 parent 14b1fef commit d4b2bee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified img/submit_form.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/java/com/ukarim/smppgui/gui/MainFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private void performConversionFromStringToHex() {
JTextArea jTextAreaText = new JTextArea();
jTextAreaText.setLineWrap(true);
jTextAreaText.setRows(5);
jTextAreaText.setSize(500, 1);
jTextAreaText.setColumns(30);
JScrollPane jScrollPaneText = new JScrollPane(jTextAreaText);
jScrollPaneText.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);

Expand Down Expand Up @@ -135,8 +135,8 @@ private void performConversionFromStringToHex() {
JTextArea jTextAreaConvertedHexValue = new JTextArea(convertedHexValue);
jTextAreaConvertedHexValue.setEditable(false);
jTextAreaConvertedHexValue.setRows(5);
jTextAreaConvertedHexValue.setColumns(30);
jTextAreaConvertedHexValue.setLineWrap(true);
jTextAreaConvertedHexValue.setSize(500, 1);
JScrollPane scroll = new JScrollPane(jTextAreaConvertedHexValue);
scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);

Expand Down

0 comments on commit d4b2bee

Please sign in to comment.