We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27d5cc commit 41c6fcdCopy full SHA for 41c6fcd
src/modules/CannedMessageModule.cpp
@@ -1657,7 +1657,7 @@ int32_t CannedMessageModule::runOnce()
1657
case 0x08: // backspace
1658
if (this->freetext.length() > 0) {
1659
if (this->cursor > 0) {
1660
- // удаляем предыдущий UTF-8 кодовый символ
+ // Delete the previous UTF-8 character
1661
int prev = utf8_prev_index(this->freetext, this->cursor);
1662
if (this->cursor == this->freetext.length()) {
1663
this->freetext = this->freetext.substring(0, prev);
0 commit comments