Skip to content

Commit e164d6c

Browse files
committed
Allow ? and @ symbols inside listbox
1 parent 3a3b472 commit e164d6c

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Resources/Fonts/InterTabular.ttf

856 Bytes
Binary file not shown.

Source/Components/DraggableNumber.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ void DraggableNumber::editorShown(TextEditor& editor)
4747
onTextChange();
4848
};
4949
// Limits of our tabular numbers font, to keep it portable
50-
editor.setInputRestrictions(0, "!\"#$%&'()*+,-./0123456789:;<=>[\\]^_`{|}~ abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
50+
editor.setInputRestrictions(0, "?@!\"#$%&'()*+,-./0123456789:;<=>[\\]^_`{|}~ abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
5151
editor.setJustification(Justification::centredLeft);
5252
}
5353

0 commit comments

Comments
 (0)