vlc | branch: master | Fatih Uzunoglu <[email protected]> | Fri Jan 8 00:37:04 2021 +0300| [ed12c57e42f6a6fdcd6b58f6bc04fce59701fc17] | committer: Pierre Lamot
qml: change cursor when dragging DragItem Signed-off-by: Pierre Lamot <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ed12c57e42f6a6fdcd6b58f6bc04fce59701fc17 --- modules/gui/qt/widgets/qml/DragItem.qml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/gui/qt/widgets/qml/DragItem.qml b/modules/gui/qt/widgets/qml/DragItem.qml index 807de1ea58..723ed2ec28 100644 --- a/modules/gui/qt/widgets/qml/DragItem.qml +++ b/modules/gui/qt/widgets/qml/DragItem.qml @@ -42,9 +42,12 @@ Playlist.PlaylistDroppable { } Drag.onActiveChanged: { - if (!Drag.active) - return - _model = updateComponents(_maxCovers) + if (Drag.active) { + _model = updateComponents(_maxCovers) + mainInterface.setCursor(Qt.DragMoveCursor) + } else { + mainInterface.restoreCursor() + } } function coversXPos(index) { _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
