aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/editable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/editable.cpp b/gui/editable.cpp
index ce4bf6401c..67691861bf 100644
--- a/gui/editable.cpp
+++ b/gui/editable.cpp
@@ -62,7 +62,7 @@ void EditableWidget::setEditString(const String &str) {
}
bool EditableWidget::tryInsertChar(byte c, int pos) {
- if ((c >= 32 && c <= 127) || (c >= 160 && c <= 255)) {
+ if ((c >= 32 && c <= 127) || c >= 160) {
_editString.insertChar(c, pos);
return true;
}