Skip to content

Commit 737bb85

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

File tree

12 files changed

+425
-205
lines changed

12 files changed

+425
-205
lines changed

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)