Selecting a message and starting to move it (e.g. to drop it into a folder) has a strange looking (whole text line is moved). It is nearly impossible to drop at the right place, because it is not clear, where the "hot spot" on the line is. Possible reason (from strace) : cursors/dnd-move cursor not found, which would change the cursor to a document icon. Such a files exists in /usr/share/icons/Adwaita/cursors/dnd-move but is not looked up there: ``` openat(AT_FDCWD, "/home/buczek/.icons/cursors/dnd-move", O_RDONLY) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/usr/share/icons/cursors/dnd-move", O_RDONLY) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/usr/share/pixmaps/cursors/dnd-move", O_RDONLY) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/home/buczek/.icons/default/cursors/dnd-move", O_RDONLY) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/usr/share/icons/default/cursors/dnd-move", O_RDONLY) = -1 ENOENT (No such file or directory) openat(AT_FDCWD, "/usr/share/pixmaps/default/cursors/dnd-move", O_RDONLY) = -1 ENOENT (No such file or directory) ```