Fixed manual chum sort not working
This commit is contained in:
parent
87fc72a355
commit
440a4a36b4
2 changed files with 3 additions and 2 deletions
|
@ -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'.
|
||||
|
|
|
@ -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('')
|
||||
|
||||
|
|
Loading…
Reference in a new issue