Skip to content

Commit

Permalink
修复只能显示15个缓存信息的bug,以及其他的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
molihuan committed Jul 29, 2023
1 parent 7b5693e commit 737bb85
Show file tree
Hide file tree
Showing 12 changed files with 425 additions and 205 deletions.
6 changes: 5 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,11 @@ def resizeEvent(self, event):
# ///////////////////////////////////////////////////////////////
def mousePressEvent(self, event):
# SET DRAG POS WINDOW
self.dragPos = event.globalPos()
p = event.globalPosition()
globalPos = p.toPoint()
self.dragPos = globalPos

# self.dragPos = event.globalPos()

# PRINT MOUSE EVENTS
if event.buttons() == Qt.LeftButton:
Expand Down
Loading

0 comments on commit 737bb85

Please sign in to comment.