mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Set default indices for transform to '*'
Former-commit-id: 7a6e5ef61a2a54cf9ba52ba5777394c5ae5dfadd
This commit is contained in:
parent
734759ffb3
commit
20d4f00a4b
@ -1 +1 @@
|
||||
a7a90d7ac31f76d56191446cd28fa7088e47199b
|
||||
0e33a5994203b58676a56efa2addf362a276c219
|
@ -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);
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user