Commit 7df64211 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Highlight the text in the PathEdit control.

parent 337e1e20
...@@ -1434,6 +1434,9 @@ static UINT msi_dialog_pathedit_control( msi_dialog *dialog, MSIRECORD *rec ) ...@@ -1434,6 +1434,9 @@ static UINT msi_dialog_pathedit_control( msi_dialog *dialog, MSIRECORD *rec )
val = msi_dup_property( dialog->package, prop ); val = msi_dup_property( dialog->package, prop );
SetWindowTextW( control->hwnd, val ); SetWindowTextW( control->hwnd, val );
SendMessageW( control->hwnd, EM_SETSEL, 0, -1 );
msi_free( val ); msi_free( val );
msi_free( indirect ); msi_free( indirect );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment