Skip to content

Commit

Permalink
'Port' field width fixed in InstanceEditorDialog (5 chars)
Browse files Browse the repository at this point in the history
  • Loading branch information
smklimenko committed Sep 6, 2024
1 parent c8802df commit 9307e62
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# KdbInsideBrains Changelog

## [5.9.1]

### Fixed

- Width of "Port" field in "Instance Editor" dialog fixed to show five numbers.

## [5.9.0]

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,8 @@ private JPanel createLeftPanel() {
final JPanel p2 = new JPanel(new BorderLayout(3, 0));
p2.add(new JLabel("Port:"), BorderLayout.LINE_START);

portField.setPreferredSize(new Dimension(50, 0));
portField.setColumns(6);
portField.setCanBeEmpty(false);
p2.add(portField, BorderLayout.LINE_END);

p.add(p2, BorderLayout.LINE_END);
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pluginVersion=5.9.0
pluginVersion=5.9.1

0 comments on commit 9307e62

Please sign in to comment.