Skip to content

Commit 53c2c48

Browse files
committed
Fix the name field order
1 parent 9d5b273 commit 53c2c48

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/main/java/com/junichi11/netbeans/modules/github/issues/repository/ui/GitHubRepositoryPanel.form

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@
6969
<Component id="oauthTokenTextField" alignment="3" min="-2" max="-2" attributes="0"/>
7070
<Component id="addRepositoryButton" alignment="3" min="-2" max="-2" attributes="0"/>
7171
</Group>
72-
<EmptySpace max="-2" attributes="0"/>
73-
<Group type="103" groupAlignment="3" attributes="0">
74-
<Component id="displayNameLabel" alignment="3" min="-2" max="-2" attributes="0"/>
75-
<Component id="displayNameTextField" alignment="3" min="-2" max="-2" attributes="0"/>
76-
</Group>
77-
<EmptySpace max="-2" attributes="0"/>
72+
<EmptySpace min="-2" max="-2" attributes="0"/>
7873
<Group type="103" groupAlignment="3" attributes="0">
7974
<Component id="userNameLabel" alignment="3" min="-2" max="-2" attributes="0"/>
8075
<Component id="userNameTextField" alignment="3" min="-2" max="-2" attributes="0"/>
8176
</Group>
8277
<EmptySpace max="-2" attributes="0"/>
78+
<Group type="103" groupAlignment="3" attributes="0">
79+
<Component id="displayNameTextField" alignment="3" min="-2" max="-2" attributes="0"/>
80+
<Component id="displayNameLabel" alignment="3" min="-2" max="-2" attributes="0"/>
81+
</Group>
82+
<EmptySpace min="-2" max="-2" attributes="0"/>
8383
<Group type="103" groupAlignment="3" attributes="0">
8484
<Component id="repositoryAuthorTextField" alignment="3" min="-2" max="-2" attributes="0"/>
8585
<Component id="repositoryLabel" alignment="3" min="-2" max="-2" attributes="0"/>

src/main/java/com/junichi11/netbeans/modules/github/issues/repository/ui/GitHubRepositoryPanel.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -404,14 +404,14 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
404404
.addComponent(oauthTokenTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
405405
.addComponent(addRepositoryButton))
406406
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
407-
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
408-
.addComponent(displayNameLabel)
409-
.addComponent(displayNameTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
410-
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
411407
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
412408
.addComponent(userNameLabel)
413409
.addComponent(userNameTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
414410
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
411+
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
412+
.addComponent(displayNameTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
413+
.addComponent(displayNameLabel))
414+
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
415415
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
416416
.addComponent(repositoryAuthorTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
417417
.addComponent(repositoryLabel)

0 commit comments

Comments
 (0)