This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
Cardinal
mirror of
https://github.com/DISTRHO/Cardinal.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
18
Wiki
Activity
Browse Source
Ignore non-printable characters
Fixes
#5
Signed-off-by: falkTX <falktx@falktx.com>
tags/22.02
falkTX
3 years ago
parent
7ea10c0b92
commit
fe8ea81dc2
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/CardinalUI.cpp
+ 1
- 1
src/CardinalUI.cpp
View File
@@ -236,7 +236,7 @@ protected:
bool onCharacterInput(const CharacterInputEvent& ev) override
{
if (ev.character
== 0
)
if (ev.character
<= ' ' || ev.character >= kKeyDelete
)
return false;
const ScopedContext sc(this);
Write
Preview
Loading…
Cancel
Save