diff --git a/dialogs.cpp b/dialogs.cpp index 830f0338..e2921ce1 100644 --- a/dialogs.cpp +++ b/dialogs.cpp @@ -695,7 +695,7 @@ namespace dialog { keyhandler = [] (int sym, int uni) { handleNavigation(sym, uni); - if((uni >= '0' && uni <= '9') || among(uni, '.', '+', '-', '*', '/', '^', '(', ')') || (uni >= 'a' && uni <= 'z')) { + if((uni >= '0' && uni <= '9') || among(uni, '.', '+', '-', '*', '/', '^', '(', ')', ',') || (uni >= 'a' && uni <= 'z')) { ne.s += uni; apply_edit(); }