-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing NotifyIcon notification constant #1769
base: main
Are you sure you want to change the base?
Conversation
What's blocking it from being int? |
@mikebattista I didn't fully explore that rabbit hole, but I think we'll need to change WM_USER and all the NIN_ msgs to int and then fix all the collateral damage. 😅 |
Interesting, made the change locally again and doesn't seem as bad. Will update this PR shortly. |
Looks like AzDO has given up on builds. @mikebattista |
All the other WM_ constants are uint. Are there side effects of making WM_USER int but not the others? Feels like this should cause some usability problems somewhere. |
Yeah, I think there's a larger "naked constants should default to int not uint" discussion to be had here. |
Thanks. I believe it should be fixed now. |
01f35c4
to
579cc3e
Compare
Fixes: #1765