diff options
author | 2007-11-29 22:18:40 -0500 | |
---|---|---|
committer | 2007-11-29 22:18:40 -0500 | |
commit | 410afcb80b294743293e82bcc8ee9140279eb443 (patch) | |
tree | 5e2650a2774fa2f804dac986bcf2cf1167666e8a | |
parent | c628b2d780725599dc292db4bebd914845576950 (diff) | |
download | textadept-410afcb80b294743293e82bcc8ee9140279eb443.tar.gz textadept-410afcb80b294743293e82bcc8ee9140279eb443.zip |
Hide completions buffer on c_activated; src/textadept.c
-rw-r--r-- | src/textadept.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/textadept.c b/src/textadept.c index 524d5a6f..c7f18992 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -219,6 +219,7 @@ void command_toggle_focus() { // Notifications/signals static void c_activated(GtkWidget *widget, gpointer) { + l_handle_event("hide_completions"); l_ta_command(gtk_entry_get_text(GTK_ENTRY(widget))); command_toggle_focus(); } |