id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking	branch_state	votes
3902	"""Natural"" mouse scroll direction"	vik		"Please add the ""natural scroll direction"" feature to scroll with mouse using natural scroll direction as it is done in the macos.
It could be done in 10-15 minutes by adding new boolean parameter in the CONFIG_MISC_SECTION, for example ""mouse_reverse_scroll"", loading it in the setup.c, and then to change mouse.c by reversing the mouse scroll direction if it's set, like:

midnight/mc/lib/widget $ diff mouse.c mouse.c.original
104,107c104
<                 if (mouse_reverse_scroll)
<                     msg = MSG_MOUSE_SCROLL_DOWN;
<                 else
<                     msg = MSG_MOUSE_SCROLL_UP;
---
>                 msg = MSG_MOUSE_SCROLL_UP;
109,112c106
<                 if (mouse_reverse_scroll)
<                     msg = MSG_MOUSE_SCROLL_UP;
<                 else
<                     msg = MSG_MOUSE_SCROLL_DOWN;
---
>                 msg = MSG_MOUSE_SCROLL_DOWN;

All Mac users will say you big ""thank you"" for that ))"	enhancement	new	major	Future Releases	mc-core	master			egmont			no branch	
