diff --git a/CHANGELOG.md b/CHANGELOG.md index b8b1f51..8b0ed68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - A few memo/convo related syntax errors in a few themes - nothing.png being missing in some themes. - 64-bit crt for PyInstaller +- Manual sort not working ### Changed - Honk emote now only triggers when typing ':honk:' instead of on every 'honk'. diff --git a/pesterchum.py b/pesterchum.py index dac9368..546d965 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -427,11 +427,11 @@ class chumArea(RightClickTree): try: # create mime data object mime = QtCore.QMimeData() - mime.setData('application/x-item', '???') + mime.setData('application/x-item', QtCore.QByteArray()) # Voodoo programming :"3 # start drag drag = QtGui.QDrag(self) drag.setMimeData(mime) - drag.start(QtCore.Qt.MoveAction) + drag.exec_(QtCore.Qt.MoveAction) except: logging.exception('')