diff win/dw.c @ 2108:35abef6e33a9

Win: Fixed the notification callback when clicking the toast. Currently, the toast isn't clickable once it moves into the action center. This is a known issue with WinToast, because once the toast moves into the action center, it requires a COM notificaiton object be registered.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 17 Jun 2020 03:38:21 +0000
parents 6e55c6f8d816
children 251d050d306b
line wrap: on
line diff
--- a/win/dw.c	Tue Jun 16 05:46:22 2020 +0000
+++ b/win/dw.c	Wed Jun 17 03:38:21 2020 +0000
@@ -2014,7 +2014,7 @@
       /* Find any callbacks for this function */
       while (tmp)
       {
-         if (tmp->message == msg || msg == WM_COMMAND || msg == WM_NOTIFY || tmp->message == WM_USER+1)
+         if (tmp->message == msg || msg == WM_COMMAND || msg == WM_NOTIFY || tmp->message == WM_USER+1 || msg == WM_USER+102)
          {
             switch (msg)
             {