move "sign-off" checkbox below "amend"

Users got used to the current position of amend, better not to move it.
This commit is contained in:
Kirill Likhodedov
2016-08-23 18:15:13 +03:00
parent 4dfbcf7931
commit 165ee331b6
@@ -725,8 +725,8 @@ public class GitCheckinEnvironment implements CheckinEnvironment {
myPanel = new JPanel(new GridBagLayout());
myPanel.add(authorLabel, gb.nextLine().next());
myPanel.add(myAuthorField, gb.next().fillCellHorizontally().weightx(1));
myPanel.add(mySignOffCheckbox, gb.nextLine().next().coverLine());
myPanel.add(myAmendComponent.getComponent(), gb.nextLine().next().coverLine());
myPanel.add(mySignOffCheckbox, gb.nextLine().next().coverLine());
}
@NotNull