diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-18 00:39:11 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-18 00:39:11 +0200 |
commit | c931eaa22c0890539867399f161c64abdb85a4b8 (patch) | |
tree | 1c5edf3aa8042b12ee810e6d4e63414eeb4d2854 /LibGUI/GWindow.cpp | |
parent | c4c7f224d55f3c97b7385f2ce505c9a3d1d02183 (diff) | |
download | serenity-c931eaa22c0890539867399f161c64abdb85a4b8.zip |
WindowServer: Generate a separate WM event for window icon changes.
Diffstat (limited to 'LibGUI/GWindow.cpp')
-rw-r--r-- | LibGUI/GWindow.cpp | 2 |
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); |