Skip to content

Commit 8f160af

Browse files
fix: upadte Qt.CopyAction usage for PyQt6 (#91)
1 parent 14cedf9 commit 8f160af

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: upadte Qt.CopyAction usage for PyQt6 (#88)
23
- fix: update Qt.LeftButton usage for PyQt6 (#88)
34
- enh: allow specifying collections in upload task files and via the API
45
- docs: increase warning threshold for max number of resources to 1000

dcoraid/gui/dbview/drag_table_widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ def mouseMoveEvent(self, e):
2020
drag.setHotSpot(e.pos() - self.rect().topLeft())
2121

2222
# This magic is somehow required to get drag working.
23-
dropAction = drag.exec(Qt.CopyAction) # noqa: F841
23+
dropAction = drag.exec(Qt.DropAction.CopyAction) # noqa: F841

0 commit comments

Comments
 (0)