ensure caret is handled correctly on gtk when focus is removed from layout

This commit is contained in:
Vincent Sanders 2019-11-27 23:45:14 +00:00
parent 69236590d0
commit 86f73b767a
1 changed files with 18 additions and 0 deletions

View File

@ -302,6 +302,22 @@ nsgtk_window_motion_notify_event(GtkWidget *widget,
return TRUE;
}
/**
* GTK signal handler for focus-out-event on layout
*
* when focus leaves the layout widget ensure the caret is cleared
*/
static gboolean
nsgtk_window_focus_out_event(GtkWidget *widget,
GdkEvent *event,
gpointer data)
{
struct gui_window *g = data;
browser_window_remove_caret(g->bw, true);
return FALSE;
}
/**
* GTK signal handler for button-press-event on layout
*/
@ -914,6 +930,8 @@ gui_window_create(struct browser_window *bw,
nsgtk_window_size_allocate_event, g);
CONNECT(g->layout, "scroll-event",
nsgtk_window_scroll_event, g);
CONNECT(g->layout, "focus-out-event",
nsgtk_window_focus_out_event, g);
/* status pane signals */
CONNECT(g->paned, "size-allocate",