Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.

Commit 737bb85

Browse files
committed
修复只能显示15个缓存信息的bug,以及其他的bug
1 parent 7b5693e commit 737bb85

12 files changed

Lines changed: 425 additions & 205 deletions

File tree

main.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,11 @@ def resizeEvent(self, event):
243243
# ///////////////////////////////////////////////////////////////
244244
def mousePressEvent(self, event):
245245
# SET DRAG POS WINDOW
246-
self.dragPos = event.globalPos()
246+
p = event.globalPosition()
247+
globalPos = p.toPoint()
248+
self.dragPos = globalPos
249+
250+
# self.dragPos = event.globalPos()
247251

248252
# PRINT MOUSE EVENTS
249253
if event.buttons() == Qt.LeftButton:

0 commit comments

Comments
 (0)