pyloid 0.24.2__tar.gz → 0.24.3__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.2 → pyloid-0.24.3}/PKG-INFO +1 -1
- {pyloid-0.24.2 → pyloid-0.24.3}/pyproject.toml +1 -1
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/browser_window.py +6 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/LICENSE +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/README.md +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/__init__.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/api.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/autostart.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/custom/titlebar.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/filewatcher.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/js_api/base.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/js_api/event_api.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/js_api/window_api.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/monitor.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/pyloid.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/rpc.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/serve.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/store.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/thread_pool.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/timer.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/tray.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/url_interceptor.py +0 -0
- {pyloid-0.24.2 → pyloid-0.24.3}/src/pyloid/utils.py +0 -0
@@ -228,12 +228,18 @@ class CustomWebEngineView(QWebEngineView):
|
|
228
228
|
|
229
229
|
def eventFilter(self, source, event):
|
230
230
|
if self.focusProxy() is source:
|
231
|
+
# 리사이징 영역에 있을 때는 모든 클릭 이벤트를 가로채기
|
232
|
+
if self.is_in_resize_area and event.type() == QEvent.MouseButtonPress:
|
233
|
+
self.mouse_press_event(event)
|
234
|
+
return True # 이벤트를 소비하여 웹뷰로 전달되지 않도록 함
|
235
|
+
|
231
236
|
if event.type() == QEvent.MouseButtonPress:
|
232
237
|
self.mouse_press_event(event)
|
233
238
|
elif event.type() == QEvent.MouseMove:
|
234
239
|
self.mouse_move_event(event)
|
235
240
|
elif event.type() == QEvent.MouseButtonRelease:
|
236
241
|
self.mouse_release_event(event)
|
242
|
+
|
237
243
|
return super().eventFilter(source, event)
|
238
244
|
|
239
245
|
def get_resize_direction(self, pos):
|
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
|