Skip to content
This repository has been archived by the owner on Apr 26, 2019. It is now read-only.

Commit

Permalink
info about settings in the dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
David Vavra committed Feb 9, 2015
1 parent 1ae1b58 commit 1ce2241
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/com/avast/android/butterknifezelezny/form/EntryList.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,16 @@ protected void addButtons() {
mHolderLabel = new JLabel();
mHolderLabel.setText("Create ViewHolder");

JLabel settingsInfo = new JLabel();
settingsInfo.setText("(You can configure this plugin in Preferences)");

JPanel holderPanel = new JPanel();
holderPanel.setLayout(new BoxLayout(holderPanel, BoxLayout.LINE_AXIS));
holderPanel.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 10));
holderPanel.add(mHolderCheck);
holderPanel.add(mHolderLabel);
holderPanel.add(Box.createHorizontalGlue());
holderPanel.add(settingsInfo);
add(holderPanel, BorderLayout.PAGE_END);

mCancel = new JButton();
Expand Down

0 comments on commit 1ce2241

Please sign in to comment.