We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a301074 commit b6d0024Copy full SHA for b6d0024
2 files changed
CHANGELOG
@@ -1,4 +1,5 @@
1
0.17.3
2
+ - fix: update Qt.LeftButton usage for PyQt6 (#88)
3
- enh: allow specifying collections in upload task files and via the API
4
- docs: increase warning threshold for max number of resources to 1000
5
(CKAN 2.11.3 handles datasets with many resources much better)
dcoraid/gui/dbview/drag_table_widget.py
@@ -4,7 +4,7 @@
class DragTableWidget(QtWidgets.QTableWidget):
6
def mouseMoveEvent(self, e):
7
- if e.buttons() != Qt.LeftButton:
+ if e.buttons() != Qt.MouseButton.LeftButton:
8
return
9
10
urls = []
0 commit comments