Browse Source

btn: no newlines in description

pull/2575/head
Maxim Prokhorov 1 year ago
parent
commit
3513d0468e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/button.cpp

+ 1
- 1
code/espurna/button.cpp View File

@ -1251,7 +1251,7 @@ public:
String description() const override {
char buffer[64];
snprintf_P(buffer, sizeof(buffer),
PSTR("%s @ level %d (%d...%d)\n"),
PSTR("%s @ level %d (%d...%d)"),
id(), _expected, _from, _to);
return buffer;


Loading…
Cancel
Save