[vlc-commits] [Git][videolan/vlc][master] qml: set the cursor busy in `MainViewLoader` when the model is busy

Steve Lhomme (@robUx4) gitlab at videolan.org
Sun Mar 30 07:48:36 UTC 2025



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
1d10b736 by Fatih Uzunoglu at 2025-03-30T07:32:30+00:00
qml: set the cursor busy in `MainViewLoader` when the model is busy

- - - - -


1 changed file:

- modules/gui/qt/maininterface/qml/MainViewLoader.qml


Changes:

=====================================
modules/gui/qt/maininterface/qml/MainViewLoader.qml
=====================================
@@ -58,6 +58,18 @@ Widgets.StackViewExt {
     // NOTE: Sometimes the model has no 'loading' property.
     readonly property bool isLoading: model.loading ?? false
 
+    onIsLoadingChanged: {
+        // Adjust the cursor. Unless the loaded item (view) sets a cursor
+        // globally or for itself, this is going to be respected. It should
+        // be noted that cursor adjustment is conventionally not delayed,
+        // unlike indicators:
+        if (isLoading) {
+            MainCtx.setCursor(root, Qt.BusyCursor)
+        } else {
+            MainCtx.unsetCursor(root)
+        }
+    }
+
     readonly property int count: model.count
 
     readonly property bool hasGridListMode: !!grid && !!list



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/1d10b7365506ff5c0f3de55b3ee7ed3845c749ec

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/1d10b7365506ff5c0f3de55b3ee7ed3845c749ec
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list