Skip to content

Commit

Permalink
Merge pull request #6512 from troizet/php_code_completion_settings_ch…
Browse files Browse the repository at this point in the history
…eckboxes

PHP: Fixed element positioning in code completion settings for php
  • Loading branch information
mbien authored Oct 8, 2023
2 parents 2c96166 + 5e774cb commit 7a21a21
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
</Group>
</Group>
<Group type="102" alignment="0" attributes="0">
<EmptySpace max="-2" attributes="0"/>
<EmptySpace min="-2" pref="12" max="-2" attributes="0"/>
<Group type="103" groupAlignment="0" attributes="0">
<Component id="codeCompletionTypeLabel" alignment="0" min="-2" max="-2" attributes="0"/>
<Component id="smartRadioButton" alignment="0" min="-2" max="-2" attributes="0"/>
Expand All @@ -100,19 +100,19 @@
</Group>
</Group>
<Group type="102" alignment="0" attributes="0">
<EmptySpace max="-2" attributes="0"/>
<EmptySpace min="-2" pref="12" max="-2" attributes="0"/>
<Component id="useLowercaseLabel" min="-2" max="-2" attributes="0"/>
</Group>
<Group type="102" alignment="0" attributes="0">
<EmptySpace max="-2" attributes="0"/>
<EmptySpace min="-2" pref="12" max="-2" attributes="0"/>
<Component id="trueFalseNullCheckBox" min="-2" max="-2" attributes="0"/>
</Group>
<Group type="102" alignment="0" attributes="0">
<EmptySpace max="-2" attributes="0"/>
<EmptySpace min="-2" pref="12" max="-2" attributes="0"/>
<Component id="autoCompletionCommentAsteriskLabel" min="-2" max="-2" attributes="0"/>
</Group>
<Group type="102" alignment="0" attributes="0">
<EmptySpace max="-2" attributes="0"/>
<EmptySpace min="-2" pref="12" max="-2" attributes="0"/>
<Component id="autoCompletionCommentAsteriskCheckBox" min="-2" max="-2" attributes="0"/>
</Group>
</Group>
Expand Down Expand Up @@ -153,9 +153,9 @@
<Component id="currentFileVariablesRadioButton" min="-2" max="-2" attributes="0"/>
<EmptySpace type="unrelated" max="-2" attributes="0"/>
<Component id="codeCompletionTypeLabel" min="-2" max="-2" attributes="0"/>
<EmptySpace min="-2" max="-2" attributes="0"/>
<EmptySpace max="-2" attributes="0"/>
<Component id="smartRadioButton" min="-2" max="-2" attributes="0"/>
<EmptySpace min="-2" max="-2" attributes="0"/>
<EmptySpace max="-2" attributes="0"/>
<Component id="smartInfoLabel" min="-2" max="-2" attributes="0"/>
<EmptySpace max="-2" attributes="0"/>
<Component id="fullyQualifiedRadioButton" min="-2" max="-2" attributes="0"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ private void initComponents() {
.addComponent(autoStringConcatenationCheckBox)
.addComponent(codeCompletionFirstClassCallableCheckBox)))
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGap(12, 12, 12)
.addGroup(layout.createParallelGroup(Alignment.LEADING)
.addComponent(codeCompletionTypeLabel)
.addComponent(smartRadioButton)
Expand All @@ -486,16 +486,16 @@ private void initComponents() {
.addComponent(fullyQualifiedInfoLabel)
.addComponent(unqualifiedInfoLabel)))))
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGap(12, 12, 12)
.addComponent(useLowercaseLabel))
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGap(12, 12, 12)
.addComponent(trueFalseNullCheckBox))
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGap(12, 12, 12)
.addComponent(autoCompletionCommentAsteriskLabel))
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGap(12, 12, 12)
.addComponent(autoCompletionCommentAsteriskCheckBox)))
.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
Expand Down

0 comments on commit 7a21a21

Please sign in to comment.