msi: Feature treeview should have WS_TABSTOP style.
This commit is contained in:
parent
b408b5a9a4
commit
6e51cfddfd
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue