msi: Feature treeview should have WS_TABSTOP style.

This commit is contained in:
Akihiro Sagawa 2015-09-12 20:24:22 +09:00 committed by Alexandre Julliard
parent b408b5a9a4
commit 6e51cfddfd
1 changed files with 1 additions and 1 deletions

View File

@ -2691,7 +2691,7 @@ static UINT msi_dialog_selection_tree( msi_dialog *dialog, MSIRECORD *rec )
/* create the treeview control */
style = TVS_HASLINES | TVS_HASBUTTONS | TVS_LINESATROOT;
style |= WS_GROUP | WS_VSCROLL;
style |= WS_GROUP | WS_VSCROLL | WS_TABSTOP;
control = msi_dialog_add_control( dialog, rec, WC_TREEVIEWW, style );
if (!control)
{