Skip to content

Commit

Permalink
Rearrange the padding of the "Append library" dialog (#4914)
Browse files Browse the repository at this point in the history
I have added a 5 pixels padding on the left of the container.
Also removed a duplicate line related to the padding.
  • Loading branch information
znuznu authored and tobiasdiez committed Apr 23, 2019
1 parent 8e0ffe1 commit 8f9358d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,11 @@ private void init() {
getDialogPane().setContent(container);
container.setHgap(10);
container.setVgap(10);
container.setPadding(new Insets(15, 5, 0, 0));
container.add(entries, 0, 0);
container.add(strings, 0, 1);
container.add(groups, 0, 2);
container.add(selector, 0, 3);
container.setPadding(new Insets(15, 5, 0, 0));
container.setPadding(new Insets(15, 5, 0, 5));
container.setGridLinesVisible(false);
}

Expand Down

0 comments on commit 8f9358d

Please sign in to comment.