Re: [TRY 4] [PATCH] user32: horizontal and vertical scrolling of selection in edit control
29 Mar
2010
29 Mar
'10
10:58 a.m.
Henry Kroll III <henry(a)comptune.com> wrote:
+ if (es->region_posx < 0)EDIT_EM_LineScroll(es,-10,0); + else if (es->region_posx > 0)EDIT_EM_LineScroll(es,10,0); + if (es->region_posy < 0)EDIT_EM_LineScroll(es,0,-1); + else if (es->region_posy > 0)EDIT_EM_LineScroll(es,0,1);
Where do -/+10,-/+1 come from? A test case wouldn't hurt. Also please add some spacing and try to follow the indentation style of existing code. -- Dmitry.
5827
Age (days ago)
5827
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov