diff options
author | Milan Crha <mcrha@redhat.com> | 2013-02-22 16:34:31 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-02-22 16:34:31 +0800 |
commit | 3b8afec6a73886883cbec2fe962aaa39cd467b5e (patch) | |
tree | 563a142edc3768c0070b27da46c4d434b78c5fb6 | |
parent | b1fc3c595800bab269274419e889690b024e9e0e (diff) | |
download | gsoc2013-evolution-3b8afec6a73886883cbec2fe962aaa39cd467b5e.tar.gz gsoc2013-evolution-3b8afec6a73886883cbec2fe962aaa39cd467b5e.tar.zst gsoc2013-evolution-3b8afec6a73886883cbec2fe962aaa39cd467b5e.zip |
Autocompletion - do not use quick timeout when user types text
The quick timeout is used only when new items are found,
do not use it when user types text, because it flickers.
-rw-r--r-- | e-util/e-name-selector-entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-name-selector-entry.c b/e-util/e-name-selector-entry.c index 544c8b5b51..089e440731 100644 --- a/e-util/e-name-selector-entry.c +++ b/e-util/e-name-selector-entry.c @@ -1515,7 +1515,7 @@ user_insert_text (ENameSelectorEntry *name_selector_entry, re_set_timeout (name_selector_entry->priv->update_completions_cb_id, update_completions_on_timeout_cb, name_selector_entry, AUTOCOMPLETE_TIMEOUT); re_set_timeout (name_selector_entry->priv->type_ahead_complete_cb_id, - type_ahead_complete_on_timeout_cb, name_selector_entry, SHOW_RESULT_TIMEOUT); + type_ahead_complete_on_timeout_cb, name_selector_entry, AUTOCOMPLETE_TIMEOUT); } g_signal_handlers_unblock_by_func (name_selector_entry, user_delete_text, name_selector_entry); |