pyloid 0.24.0__tar.gz → 0.24.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyloid-0.24.0 → pyloid-0.24.2}/PKG-INFO +1 -1
- {pyloid-0.24.0 → pyloid-0.24.2}/pyproject.toml +1 -1
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/browser_window.py +2 -2
- {pyloid-0.24.0 → pyloid-0.24.2}/LICENSE +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/README.md +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/__init__.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/api.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/autostart.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/custom/titlebar.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/filewatcher.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/js_api/base.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/js_api/event_api.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/js_api/window_api.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/monitor.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/pyloid.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/rpc.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/serve.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/store.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/thread_pool.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/timer.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/tray.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/url_interceptor.py +0 -0
- {pyloid-0.24.0 → pyloid-0.24.2}/src/pyloid/utils.py +0 -0
@@ -155,9 +155,9 @@ class CustomWebPage(QWebEnginePage):
|
|
155
155
|
|
156
156
|
|
157
157
|
class CustomWebEngineView(QWebEngineView):
|
158
|
-
def __init__(self, parent: "
|
158
|
+
def __init__(self, parent: "_BrowserWindow" = None):
|
159
159
|
super().__init__(parent._window)
|
160
|
-
self.parent: "
|
160
|
+
self.parent: "_BrowserWindow" = parent
|
161
161
|
|
162
162
|
# Custom Web Page
|
163
163
|
self.custom_page = CustomWebPage()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|