summaryrefslogtreecommitdiff
path: root/LibGUI/GWindow.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-18 00:39:11 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-18 00:39:11 +0200
commitc931eaa22c0890539867399f161c64abdb85a4b8 (patch)
tree1c5edf3aa8042b12ee810e6d4e63414eeb4d2854 /LibGUI/GWindow.cpp
parentc4c7f224d55f3c97b7385f2ce505c9a3d1d02183 (diff)
downloadserenity-c931eaa22c0890539867399f161c64abdb85a4b8.zip
WindowServer: Generate a separate WM event for window icon changes.
Diffstat (limited to 'LibGUI/GWindow.cpp')
-rw-r--r--LibGUI/GWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GWindow.cpp b/LibGUI/GWindow.cpp
index 5e294ffc25..31f9c33e8f 100644
--- a/LibGUI/GWindow.cpp
+++ b/LibGUI/GWindow.cpp
@@ -277,7 +277,7 @@ void GWindow::event(CEvent& event)
return;
}
- if (event.type() == GEvent::WM_WindowRemoved || event.type() == GEvent::WM_WindowStateChanged)
+ if (event.type() == GEvent::WM_WindowRemoved || event.type() == GEvent::WM_WindowStateChanged || event.type() == GEvent::WM_WindowIconChanged)
return wm_event(static_cast<GWMEvent&>(event));
CObject::event(event);