Skip to content

Commit 3b52818

Browse files
fix margins of description label and use resource
1 parent e7f3f10 commit 3b52818

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqldev/src/main/java/org/utplsql/sqldev/ui/runner/RunnerPanel.xtend

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -658,12 +658,12 @@ class RunnerPanel implements FocusListener, ActionListener {
658658
c.weighty = 0
659659
testInfoPanel.add(testProcedureTextField, c)
660660
// - Description
661-
val testDescriptionLabel = new JLabel("Description")
661+
val testDescriptionLabel = new JLabel(UtplsqlResources.getString("RUNNER_DESCRIPTION"))
662662
c.gridx = 0
663663
c.gridy = 4
664664
c.gridwidth = 1
665665
c.gridheight = 1
666-
c.insets = new Insets(5, 10, 0, 0) // top, left, bottom, right
666+
c.insets = new Insets(5, 5, 0, 0) // top, left, bottom, right
667667
c.anchor = GridBagConstraints::NORTHWEST
668668
c.fill = GridBagConstraints::NONE
669669
c.weightx = 0

0 commit comments

Comments
 (0)