fix(tui): stop disabled tab pulse rendering (#42346)

This commit is contained in:
Kit Langton
2026-08-13 15:56:36 -04:00
committed by GitHub
parent 90fd61225e
commit 4836356c17
2 changed files with 25 additions and 1 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ class PulseState {
}
get live() {
return this.active || this.breathing || this.envelopes.some(envelopeActive)
return this.enabled && (this.active || this.breathing || this.envelopes.some(envelopeActive))
}
get running() {