pyloid 0.16.6__tar.gz → 0.16.9__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pyloid-0.16.6 → pyloid-0.16.9}/PKG-INFO +1 -1
- {pyloid-0.16.6 → pyloid-0.16.9}/pyproject.toml +1 -1
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/browser_window.py +1 -1
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/pyloid.py +3 -2
- {pyloid-0.16.6 → pyloid-0.16.9}/LICENSE +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/README.md +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/__init__.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/api.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/autostart.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/custom/titlebar.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/filewatcher.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/js_api/event_api.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/js_api/window_api.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/monitor.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/timer.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/tray.py +0 -0
- {pyloid-0.16.6 → pyloid-0.16.9}/src/pyloid/utils.py +0 -0
@@ -71,7 +71,7 @@ class CustomWebEngineView(QWebEngineView):
|
|
71
71
|
self.is_resizing = False
|
72
72
|
self.resize_start_pos = None
|
73
73
|
self.resize_direction = None
|
74
|
-
self.screen_geometry = self.screen().
|
74
|
+
self.screen_geometry = self.screen().virtualGeometry()
|
75
75
|
self.is_resizing_enabled = True
|
76
76
|
|
77
77
|
def mouse_press_event(self, event):
|
@@ -48,8 +48,9 @@ def custom_message_handler(mode, context, message):
|
|
48
48
|
print(
|
49
49
|
"\033[93mPyloid Warning: Vulkan GPU API issue detected. Switching to software backend.\033[0m"
|
50
50
|
)
|
51
|
-
|
52
|
-
|
51
|
+
if "linux" in sys.platform:
|
52
|
+
os.environ["QT_QUICK_BACKEND"] = "software"
|
53
|
+
custom_message_handler.vulkan_warning_shown = True
|
53
54
|
|
54
55
|
if "Autofill.enable failed" in message:
|
55
56
|
print(
|
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
|