1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-08 19:34:14 -04:00

Merge branch 'master' into otr

This commit is contained in:
James Booth 2013-09-13 16:32:22 +01:00
commit e90ba5747b

View File

@ -127,8 +127,11 @@ inp_get_char(char *input, int *size)
if (result == ERR) {
prof_handle_idle();
}
if (prefs_get_boolean(PREF_OUTTYPE) && (result != ERR) && !in_command
&& _printable(ch)) {
if (prefs_get_boolean(PREF_OUTTYPE)
&& (result != ERR)
&& (result != KEY_CODE_YES)
&& !in_command
&& _printable(ch)) {
prof_handle_activity();
}
}