Module: wine Branch: master Commit: 43950079bb3cdd4f8dec7ec97c31545498f69d0c URL: http://source.winehq.org/git/wine.git/?a=commit;h=43950079bb3cdd4f8dec7ec97c...
Author: Daniel Jelinski djelinski1@gmail.com Date: Wed Sep 19 20:26:34 2012 +0200
ieframe: cxMinChild needs to be set if RBBIM_CHILDSIZE is set.
---
dlls/ieframe/iexplore.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/ieframe/iexplore.c b/dlls/ieframe/iexplore.c index 6c66aef..7d6c6ed 100644 --- a/dlls/ieframe/iexplore.c +++ b/dlls/ieframe/iexplore.c @@ -475,6 +475,7 @@ static void create_rebar(HWND hwnd) bandinf.fMask = RBBIM_STYLE | RBBIM_CHILD | RBBIM_CHILDSIZE | RBBIM_SIZE; bandinf.fStyle = RBBS_CHILDEDGE; bandinf.cx = 100; + bandinf.cxMinChild = 0; bandinf.cyMinChild = 52; bandinf.hwndChild = hwndToolbar;