mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-19 10:42:36 +03:00
ensure caret is handled correctly on gtk when focus is removed from layout
This commit is contained in:
parent
69236590d0
commit
86f73b767a
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user