Commit 9edbfd46dcccb5d806483097201a662e6d7cded1
1 parent
7189cc05
Exists in
master
Corrigindo problema na entrada de caracteres quando a opção "Margined Paste" está ativa
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/gtk2/screen.c
... | ... | @@ -215,8 +215,8 @@ |
215 | 215 | } |
216 | 216 | |
217 | 217 | // NOTE (perry#1#): Is it the best way? |
218 | -// Input_String((const unsigned char *) input); | |
219 | - lib3270_set_string(hSession, (const unsigned char *) input); | |
218 | + Input_String((const unsigned char *) input); | |
219 | + // lib3270_set_string(hSession, (const unsigned char *) input); | |
220 | 220 | |
221 | 221 | g_free(input); |
222 | 222 | } | ... | ... |