Skip to content

Commit

Permalink
Fix for Aircoookie#3405
Browse files Browse the repository at this point in the history
  • Loading branch information
blazoncek committed Oct 1, 2023
1 parent 5eadbe7 commit b0a56a4
Show file tree
Hide file tree
Showing 4 changed files with 1,528 additions and 1,527 deletions.
4 changes: 2 additions & 2 deletions wled00/FX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2276,7 +2276,7 @@ uint16_t mode_meteor() {
}

// draw meteor
for (int j = 0; j < meteorSize; j++) {
for (unsigned j = 0; j < meteorSize; j++) {
uint16_t index = in + j;
if (index >= SEGLEN) {
index -= SEGLEN;
Expand Down Expand Up @@ -2315,7 +2315,7 @@ uint16_t mode_meteor_smooth() {
}

// draw meteor
for (int j = 0; j < meteorSize; j++) {
for (unsigned j = 0; j < meteorSize; j++) {
uint16_t index = in + j;
if (index >= SEGLEN) {
index -= SEGLEN;
Expand Down
1 change: 1 addition & 0 deletions wled00/data/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -1034,6 +1034,7 @@ textarea {
/*padding: 1px 0 1px 20px;*/
display: var(--sgp);
width: 100%;
position: relative;
}

.pname {
Expand Down
2 changes: 1 addition & 1 deletion wled00/data/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ function populateSegments(s)
}
if (segCount < 2) {
gId(`segd${lSeg}`).classList.add("hide");
gId(`segp0`).classList.add("hide");
if (parseInt(gId("seg0bri").value)==255) gId(`segp0`).classList.add("hide");
}
if (!isM && !noNewSegs && (cfg.comp.seglen?parseInt(gId(`seg${lSeg}s`).value):0)+parseInt(gId(`seg${lSeg}e`).value)<ledCount) gId(`segr${lSeg}`).classList.remove("hide");
gId('segutil2').style.display = (segCount > 1) ? "block":"none"; // rsbtn parent
Expand Down
Loading

0 comments on commit b0a56a4

Please sign in to comment.