From 93cc420c456574b752a21b7384ae06a1447d07ac Mon Sep 17 00:00:00 2001 From: user202729 <25191436+user202729@users.noreply.github.com> Date: Mon, 7 Aug 2023 07:27:57 +0700 Subject: [PATCH] Re-enable drag-drop of items --- plover/gui_qt/dictionaries_widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plover/gui_qt/dictionaries_widget.py b/plover/gui_qt/dictionaries_widget.py index b1937cd03..25a391d7c 100644 --- a/plover/gui_qt/dictionaries_widget.py +++ b/plover/gui_qt/dictionaries_widget.py @@ -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)