Skip to content

Commit

Permalink
[bugfix] dont enable both username and group selections at once
Browse files Browse the repository at this point in the history
svn path=/trunk/eXist/; revision=17709
  • Loading branch information
adamretter committed Nov 24, 2012
1 parent 2536a48 commit 2b3e499
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
<Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
<Connection code="getGroupNameModel()" type="code"/>
</Property>
<Property name="enabled" type="boolean" value="false"/>
</Properties>
<Events>
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="cmbGroupNameActionPerformed"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

cmbGroupName.setEditable(true);
cmbGroupName.setModel(getGroupNameModel());
cmbGroupName.setEnabled(false);
cmbGroupName.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cmbGroupNameActionPerformed(evt);
Expand Down

0 comments on commit 2b3e499

Please sign in to comment.