summaryrefslogtreecommitdiff
path: root/LibGUI/GEventLoop.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-26 21:58:43 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-26 21:58:43 +0100
commit2e370fa4d5d3cadd58182be18b9aeb59e32ef58e (patch)
tree4a80c1852eb260a107f662fec379d2e63438260c /LibGUI/GEventLoop.h
parent25d045dee50a33eed54a3a93f41c33b8b667f174 (diff)
downloadserenity-2e370fa4d5d3cadd58182be18b9aeb59e32ef58e.zip
LibGUI: Don't consider a GWidget focused if the window is inactive.
Diffstat (limited to 'LibGUI/GEventLoop.h')
-rw-r--r--LibGUI/GEventLoop.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGUI/GEventLoop.h b/LibGUI/GEventLoop.h
index b7150935c4..d040c36900 100644
--- a/LibGUI/GEventLoop.h
+++ b/LibGUI/GEventLoop.h
@@ -28,6 +28,7 @@ private:
void handle_paint_event(const GUI_Event&, GWindow&);
void handle_mouse_event(const GUI_Event&, GWindow&);
void handle_key_event(const GUI_Event&, GWindow&);
+ void handle_window_activation_event(const GUI_Event&, GWindow&);
struct QueuedEvent {
GObject* receiver { nullptr };