Issue-#179 fixing the value of WinApi.WM_MOUSELAST

Post Reply
luowy
Posts: 234
Joined: Mon Oct 20, 2014 12:52 pm

WinApi WM_MOUSELAST error

Post by luowy »

Code: Select all

 
		WM_MOUSELAST* = 521 (* {0, 3, 9} *);
		WM_MOUSEWHEEL* = 522;
		 
need change to

Code: Select all

 
		WM_MOUSEWHEEL* = 522;
		WM_MOUSELAST* = 522 (* {0, 3, 9} *);
		 

luowy
User avatar
Josef Templ
Posts: 2047
Joined: Tue Sep 17, 2013 6:50 am

Re: WinApi WM_MOUSELAST error

Post by Josef Templ »

Agree.

Note that the comment (* {0, 3, 9} *) also needs to be adjusted then.

- Josef
User avatar
Robert
Posts: 1024
Joined: Sat Sep 28, 2013 11:04 am
Location: Edinburgh, Scotland

Re: WinApi WM_MOUSELAST error

Post by Robert »

What is the status of this error?
User avatar
Josef Templ
Posts: 2047
Joined: Tue Sep 17, 2013 6:50 am

Re: WinApi WM_MOUSELAST error

Post by Josef Templ »

This is not yet fixed.
Would be easy.

- Josef
Post Reply