Skip to content

Commit b6d0024

Browse files
fix: update Qt.LeftButton usage for PyQt6
1 parent a301074 commit b6d0024

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
0.17.3
2+
- fix: update Qt.LeftButton usage for PyQt6 (#88)
23
- enh: allow specifying collections in upload task files and via the API
34
- docs: increase warning threshold for max number of resources to 1000
45
(CKAN 2.11.3 handles datasets with many resources much better)

dcoraid/gui/dbview/drag_table_widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class DragTableWidget(QtWidgets.QTableWidget):
66
def mouseMoveEvent(self, e):
7-
if e.buttons() != Qt.LeftButton:
7+
if e.buttons() != Qt.MouseButton.LeftButton:
88
return
99

1010
urls = []

0 commit comments

Comments
 (0)