[vlc-commits] [Git][videolan/vlc][master] qml: fix top bar appearing in non-pinned mode when playing audio in `Player`

Steve Lhomme (@robUx4) gitlab at videolan.org
Tue May 12 11:59:32 UTC 2026



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
6ad80e32 by Fatih Uzunoglu at 2026-05-12T10:59:12+00:00
qml: fix top bar appearing in non-pinned mode when playing audio in `Player`

Unlike player control bar, top bar should not appear when not
playing video when pinned controls option is not turned on.

This is a regression since 7fd34a89.

- - - - -


1 changed file:

- modules/gui/qt/player/qml/Player.qml


Changes:

=====================================
modules/gui/qt/player/qml/Player.qml
=====================================
@@ -699,7 +699,7 @@ FocusScope {
 
             tintColor: windowTheme.bg.primary
 
-            visible: MainCtx.pinVideoControls || !rootPlayer.displayFadeRectangles
+            visible: MainCtx.pinVideoControls || (MainCtx.hasEmbededVideo && !rootPlayer.displayFadeRectangles)
         }
     }
 



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/6ad80e324c5014bc5b030d7bf353acc49d0b5cfb

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




More information about the vlc-commits mailing list