Skip to content

Commit

Permalink
Merge pull request #1625 from user202729/dragdrop
Browse files Browse the repository at this point in the history
Re-enable drag-drop of items
  • Loading branch information
sammdot authored Sep 26, 2023
2 parents e651627 + 93cc420 commit df47786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plover/gui_qt/dictionaries_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def is_loaded(self):
Qt.DecorationRole, Qt.DisplayRole, Qt.ToolTipRole
}

FLAGS = Qt.ItemIsEnabled | Qt.ItemIsSelectable | Qt.ItemIsUserCheckable
FLAGS = Qt.ItemIsEnabled | Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsDragEnabled

has_undo_changed = pyqtSignal(bool)

Expand Down

0 comments on commit df47786

Please sign in to comment.