Skip to content

Commit 653c9ad

Browse files
committed
codenav/goto_file: Always return FALSE from entry_inline_completion_event
Does not seem our place to decide whether the default handler should not run, and it doesn't harm us any way if it does...
1 parent b79fda1 commit 653c9ad

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

codenav/src/goto_file.c

+2-7
Original file line numberDiff line numberDiff line change
@@ -248,14 +248,9 @@ entry_inline_completion_event(GtkEntryCompletion *completion, gchar *prefix, Gtk
248248
if(prefix_len > entry_len)
249249
{
250250
entry_len_before_completion = entry_len;
251-
return FALSE;
252-
}
253-
else
254-
{
255-
/* We know no completion will take place, no reason
256-
* for the default sig handler to be called... */
257-
return TRUE;
258251
}
252+
253+
return FALSE;
259254
}
260255

261256
/**

0 commit comments

Comments
 (0)