Return TRUE when starting inline find, to prevent inserting . or /
This commit is contained in:
parent
cec6b31044
commit
7801ecfeb5
1 changed files with 1 additions and 1 deletions
|
@ -1343,9 +1343,9 @@ gtk_widget_key_press_event_cb (WebKitWebView* web_view,
|
||||||
&& !webkit_web_view_can_paste_clipboard (web_view))
|
&& !webkit_web_view_can_paste_clipboard (web_view))
|
||||||
{
|
{
|
||||||
gchar* text = character ? g_strdup_printf ("%c", character) : g_strdup ("");
|
gchar* text = character ? g_strdup_printf ("%c", character) : g_strdup ("");
|
||||||
|
|
||||||
g_signal_emit (view, signals[SEARCH_TEXT], 0, TRUE, text);
|
g_signal_emit (view, signals[SEARCH_TEXT], 0, TRUE, text);
|
||||||
g_free (text);
|
g_free (text);
|
||||||
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue