summaryrefslogtreecommitdiff
path: root/src/widget.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/widget.cc')
-rw-r--r--src/widget.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/widget.cc b/src/widget.cc
index 4cf69c79..5cc2b8fe 100644
--- a/src/widget.cc
+++ b/src/widget.cc
@@ -1717,7 +1717,11 @@ Widget::root_surface_state_notify()
m_root_surface_state = new_state;
- if (changed_mask & GDK_TOPLEVEL_STATE_FOCUSED) {
+ // If the widget is the focus widget in the toplevel, notify
+ // the widget that it now has gained/lost the global focus
+ if ((changed_mask & GDK_TOPLEVEL_STATE_FOCUSED) &&
+ gtk_root_get_focus(r) == gtk()) {
+
if (root_focused())
terminal()->widget_focus_in();
else