This commit is contained in:
parent
f7a7920bce
commit
5e4dc24e8b
1 changed files with 3 additions and 3 deletions
|
|
@ -299,9 +299,9 @@ namespace DMX2
|
|||
if (DateTime.Now > nextMaj ) {
|
||||
nextMaj = DateTime.Now.AddMilliseconds(500);
|
||||
StringBuilder str = new StringBuilder ();
|
||||
bool a = false; int val;
|
||||
bool a = false;
|
||||
foreach (Circuit c in sequenceur.Circuits) {
|
||||
if ((val=sequenceur.ValeurCircuit (c)) > 0) {
|
||||
if (sequenceur.ValeurCircuit (c) > 0) {
|
||||
if (sequenceur.EstActif (c) != a) {
|
||||
if(!a){
|
||||
str.Append ("<span foreground='#FF8888'>");
|
||||
|
|
@ -311,7 +311,7 @@ namespace DMX2
|
|||
a = false;
|
||||
}
|
||||
}
|
||||
str.Append (string.Format("{0}({1}) ",c.ID,val));
|
||||
str.Append (c.ID); str.Append (' ');
|
||||
}
|
||||
}
|
||||
if (a) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue