Skip to content
This repository has been archived by the owner on Oct 15, 2021. It is now read-only.

Commit

Permalink
Fix bug 879493
Browse files Browse the repository at this point in the history
  • Loading branch information
mbastian committed Oct 21, 2011
1 parent 4fc58b8 commit 0411c6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion FiltersPluginUI/manifest.mf
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Manifest-Version: 1.0
AutoUpdate-Essential-Module: true
OpenIDE-Module: org.gephi.ui.filters.plugin
OpenIDE-Module-Localizing-Bundle: org/gephi/ui/filters/plugin/Bundle.properties
OpenIDE-Module-Specification-Version: 0.8.0.2
OpenIDE-Module-Specification-Version: 0.8.0.3

Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
<AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
<AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
<AuxValue name="designerSize" type="java.awt.Dimension" value="-84,-19,0,5,115,114,0,18,106,97,118,97,46,97,119,116,46,68,105,109,101,110,115,105,111,110,65,-114,-39,-41,-84,95,68,20,2,0,2,73,0,6,104,101,105,103,104,116,73,0,5,119,105,100,116,104,120,112,0,0,1,44,0,0,1,-112"/>
</AuxValues>

<Layout class="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public void stateChanged(ChangeEvent evt) {

public void setup(KCoreFilter filter) {
this.filter = filter;
degreeSpinner.setModel(new javax.swing.SpinnerNumberModel(filter.getK(), Integer.valueOf(1), null, Integer.valueOf(1)));
degreeSpinner.getModel().addChangeListener(WeakListeners.change(KCorePanel.this, degreeSpinner.getModel()));
}

Expand Down

0 comments on commit 0411c6d

Please sign in to comment.