Controls with ES_RIGHT or ES_CENTER shouldn't have ES_AUTOHSCROLL.

diff --git a/dlls/user/edit.c b/dlls/user/edit.c
index bb88f82..39770a7 100644
--- a/dlls/user/edit.c
+++ b/dlls/user/edit.c
@@ -4519,6 +4519,7 @@
 			if (es->style & ES_RIGHT)
 				es->style &= ~ES_CENTER;
 			es->style &= ~WS_HSCROLL;
+			es->style &= ~ES_AUTOHSCROLL;
 		}
 
 		/* FIXME: for now, all multi line controls are AUTOVSCROLL */