Set default indices for transform to '*'

Former-commit-id: 7a6e5ef61a2a54cf9ba52ba5777394c5ae5dfadd
This commit is contained in:
T. van der Zwan 2013-12-13 22:54:28 +01:00
parent 734759ffb3
commit 20d4f00a4b
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
a7a90d7ac31f76d56191446cd28fa7088e47199b
0e33a5994203b58676a56efa2addf362a276c219

View File

@ -101,7 +101,7 @@ public class ColorTransformPanel extends JPanel {
mIndexPanel.add(mIndexLabel, BorderLayout.WEST);
mIndexField = new JTextField(mColorConfig.mLedIndexString);
mIndexField.setToolTipText("Comma seperated indices or index ranges (eg '1-10, 13, 14, 17-19')");
mIndexField.setToolTipText("Comma seperated indices or index ranges (eg '1-10, 13, 14, 17-19'); Special case '*', which means all leds");
mIndexField.getDocument().addDocumentListener(mDocumentListener);
mIndexPanel.add(mIndexField, BorderLayout.CENTER);
}

View File

@ -7,7 +7,7 @@ public class TransformConfig {
public String mId = "default";
/** The indices to which this transform applies */
public String mLedIndexString = "0-49";
public String mLedIndexString = "*";
/** The saturation gain (in HSV space) */
public double mSaturationGain = 1.0;