Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c7d77448
Commit
c7d77448
authored
Oct 24, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ieframe: Handle rebar height changes.
parent
d272c276
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
iexplore.c
dlls/ieframe/iexplore.c
+12
-0
No files found.
dlls/ieframe/iexplore.c
View file @
c7d77448
...
...
@@ -551,6 +551,18 @@ static LRESULT iewnd_OnNotify(InternetExplorer *This, WPARAM wparam, LPARAM lpar
}
}
if
(
hdr
->
idFrom
==
IDC_BROWSE_REBAR
&&
hdr
->
code
==
RBN_HEIGHTCHANGE
)
{
RECT
docarea
;
GetClientRect
(
This
->
frame_hwnd
,
&
docarea
);
adjust_ie_docobj_rect
(
This
->
frame_hwnd
,
&
docarea
);
if
(
This
->
doc_host
->
doc_host
.
hwnd
)
SetWindowPos
(
This
->
doc_host
->
doc_host
.
hwnd
,
NULL
,
docarea
.
left
,
docarea
.
top
,
docarea
.
right
,
docarea
.
bottom
,
SWP_NOZORDER
|
SWP_NOACTIVATE
);
}
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment