You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
update examples and documentation.
Fix event handling in qt.py example. Parent methods need to be called
when overriding events.
Fix screenshot.py example. Sometimes OnLoadingStateChange was called
before OnPaint resulting in error.
Copy file name to clipboardExpand all lines: docs/Migration-guide.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ Table of contents:
51
51
*[v66+ RequestHandler.GetCookieManager not getting called in some cases](#v66-requesthandlergetcookiemanager-not-getting-called-in-some-cases)
52
52
*[v66+ Changes to Mac apps that integrate into existing message loop (Qt, wxPython)](#v66-changes-to-mac-apps-that-integrate-into-existing-message-loop-qt-wxpython)
53
53
*[v66.1+ Navigation urls passed to CreateBrowserSync or LoadUrl methods need to be encoded by app code](#v661-navigation-urls-passed-to-createbrowsersync-or-loadurl-methods-need-to-be-encoded-by-app-code)
54
-
*[v67+ Do not call the 'WindowUtils.OnSize' function](#v67-do-not-call-the-windowutilsonsize-function)
54
+
*[v66.1+ Do not call 'WindowUtils.OnSize', use `Browser.SetBounds` instead.](#v661-do-not-call-windowutilsonsize-use-browsersetbounds-instead)
55
55
56
56
57
57
## v49+ Distribution packages
@@ -499,10 +499,10 @@ Python 2 (`urllib.request.pathname2url` in Python 3) depending on your case.
499
499
The `cef.GetNavigateUrl` function was removed from the cefpython3 module.
500
500
501
501
502
-
## v67+ Do not call the 'WindowUtils.OnSize' function
502
+
## v66.1+ Do not call 'WindowUtils.OnSize', use `Browser.SetBounds` instead.
503
503
504
504
This function can sometimes cause app hanging during window resize.
505
-
Call instead the new `WindowUtils`.[UpdateBrowserSize](../api/WindowUtils.md#updatebrowsersize)
506
-
function. Except when you use the `pywin32.py` example, in such case
507
-
`WindowUtils.OnSize` must be called.
508
-
See [Issue #464](../../../issues/464) for more details.
505
+
Call instead the new `Browser`.[SetBounds](../api/Browser.md#setbounds)
506
+
function. Except for when you use the `pywin32.py` example, in such case
507
+
`WindowUtils.OnSize` must be called. See
508
+
[Issue #464](../../../issues/464) for more details.
0 commit comments