[Pixelle-commit] SF.net SVN: pixelle:[211] trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs /Pixe
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-11-20 07:51:08
|
Revision: 211
http://pixelle.svn.sourceforge.net/pixelle/?rev=211&view=rev
Author: dbrosius
Date: 2008-11-20 07:51:05 +0000 (Thu, 20 Nov 2008)
Log Message:
-----------
use the right array for sizing
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/PixelleExpressionDialog.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/PixelleExpressionDialog.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/PixelleExpressionDialog.java 2008-11-20 07:48:18 UTC (rev 210)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/PixelleExpressionDialog.java 2008-11-20 07:51:05 UTC (rev 211)
@@ -222,8 +222,8 @@
algoPanel.setLayout(new GridLayout(5, 1));
GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, rgbLHS.values().toArray(new JComponent[rgbLHS.size()]));
- GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, rgbEditor.values().toArray(new JComponent[rgbLHS.size()]));
- GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, rgbLabels.values().toArray(new JComponent[rgbLHS.size()]));
+ GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, rgbEditor.values().toArray(new JComponent[rgbEditor.size()]));
+ GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, rgbLabels.values().toArray(new JComponent[rgbLabels.size()]));
for (PixelleComponent comp : PixelleComponent.rgbValues()) {
JPanel p = new JPanel();
@@ -291,8 +291,8 @@
algoPanel.setLayout(new GridLayout(5, 1));
GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, gsLHS.values().toArray(new JComponent[gsLHS.size()]));
- GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, gsEditor.values().toArray(new JComponent[gsLHS.size()]));
- GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, gsLabels.values().toArray(new JComponent[gsLHS.size()]));
+ GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, gsEditor.values().toArray(new JComponent[gsEditor.size()]));
+ GuiUtils.sizeUniformly(GuiUtils.Sizing.Both, gsLabels.values().toArray(new JComponent[gsLabels.size()]));
for (PixelleComponent comp : PixelleComponent.gsValues()) {
JPanel p = new JPanel();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|