Module: wine Branch: master Commit: 6e51cfddfd722ef366fb2327b4ab84264aa19576 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6e51cfddfd722ef366fb2327b4...
Author: Akihiro Sagawa sagawa.aki@gmail.com Date: Sat Sep 12 20:24:22 2015 +0900
msi: Feature treeview should have WS_TABSTOP style.
---
dlls/msi/dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index a79ce1f..64cbbbc 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -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) {