Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ae806896
Commit
ae806896
authored
Feb 14, 1999
by
Francois Boisvert
Committed by
Alexandre Julliard
Feb 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed SetWindowPos32 to force the update of the non-client area.
parent
231dfa2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
winpos.c
windows/winpos.c
+4
-1
No files found.
windows/winpos.c
View file @
ae806896
...
...
@@ -2438,7 +2438,10 @@ BOOL32 WINAPI SetWindowPos32( HWND32 hwnd, HWND32 hwndInsertAfter,
RDW_INVALIDATE
|
RDW_FRAME
|
RDW_ERASE
|
RDW_ERASENOW
|
RDW_ALLCHILDREN
,
0
);
}
if
(
!
wErase
)
/* just update the nonclient area */
wndPtr
->
flags
|=
WIN_NEEDS_NCPAINT
;
// the previous command (wndPtr->flags |= WIN_NEEDS_NCPAINT)
// was not enough. Absolutly need a non client update at this point
// Cannot wait for the next WM_PAINT message, particularly in the menu-bar redrawing
WIN_UpdateNCArea
(
wndPtr
,
TRUE
);
}
}
uFlags
|=
SMC_NOPARENTERASE
;
/* X windows do not have eraseable parents */
...
...
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