@joebigelow / wix / commits / bc4a7275

Stop Richedit control from scrolling during load.

Fixes https://github.com/wixtoolset/issues/issues/7113.

Bob Arnson committed Jan 10, 2023 at 21:35 UTC bc4a72752cb199c7a3ba5a24f656b5e1c0aa9958
1 file changed +1 -1
src/libs/dutil/WixToolset.DUtil/thmutil.cpp
+1 -1
@@ -6229,7 +6229,7 @@ static HRESULT LoadControls(
6229 }
6230
6231 wzWindowClass = vhModuleMsftEdit ? MSFTEDIT_CLASS : RICHEDIT_CLASSW;
6232 - dwWindowBits |= ES_AUTOVSCROLL | ES_MULTILINE | WS_VSCROLL | ES_READONLY;
6232 + dwWindowBits |= ES_SAVESEL | ES_MULTILINE | WS_VSCROLL | ES_READONLY;
6233 break;
6234
6235 case THEME_CONTROL_TYPE_STATIC: