diff options
author | portix <none@none> | 2012-06-13 12:18:52 +0200 |
---|---|---|
committer | portix <none@none> | 2012-06-13 12:18:52 +0200 |
commit | d3c161a23aefc4631a7ccb4edb9871cdf961ada8 (patch) | |
tree | 404ec7adf767ee1cd480deb0428c7228fb36cd37 /src | |
parent | 03b7926b7cb5dc1903103c20b53b455cd41b8837 (diff) | |
download | dwb-d3c161a23aefc4631a7ccb4edb9871cdf961ada8.zip |
Call entry_focus before completion_complete in global_tab_complete
Diffstat (limited to 'src')
-rw-r--r-- | src/scripts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts.c b/src/scripts.c index e40a13a5..ab36be8d 100644 --- a/src/scripts.c +++ b/src/scripts.c @@ -769,8 +769,8 @@ global_tab_complete(JSContextRef ctx, JSObjectRef f, JSObjectRef thisObject, siz dwb.state.script_completion = g_list_reverse(dwb.state.script_completion); dwb_set_status_bar_text(dwb.gui.lstatus, label, NULL, NULL, true); - completion_complete(COMP_SCRIPT, false); entry_focus(); + completion_complete(COMP_SCRIPT, false); error_out: for (GList *l = dwb.state.script_completion; l; l=l->next) { n = l->data; |