From e364a4406a7d06c1ca3056d9c059c38f70bbffa3 Mon Sep 17 00:00:00 2001 From: Dylan Smith Date: Tue, 21 Jul 2009 00:22:12 -0400 Subject: [PATCH] richedit: Added missing return to ME_EnsureVisible. The missing return was to prevent automatic vertically scrolling when style for it is not set, but is set for the horizontal scrollbar. I initially missed this by testing with no autoscrolling on either scrollbar. --- dlls/riched20/paint.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/riched20/paint.c b/dlls/riched20/paint.c index 2c1c9b98c82..4b5fed11098 100644 --- a/dlls/riched20/paint.c +++ b/dlls/riched20/paint.c @@ -1263,7 +1263,10 @@ void ME_EnsureVisible(ME_TextEditor *editor, ME_Cursor *pCursor) x = editor->horz_si.nPos; if (~editor->styleFlags & ES_AUTOVSCROLL) + { ME_HScrollAbs(editor, x); + return; + } } else { if (~editor->styleFlags & ES_AUTOVSCROLL) return; -- 2.11.4.GIT