Merge branch 'qml/acrylicbackground' into 'master'

qml: do not make background opaque if window is not active

See merge request videolan/vlc!4870
This commit is contained in:
Fatih Uzunoğlu 2024-04-28 07:10:38 +00:00
commit cdfa01a32e
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import org.videolan.vlc 0.1
Item {
id: root
property real uiTransluency: (enabled && MainCtx.intfMainWindow.active) ? 1 : 0
property real uiTransluency: (enabled) ? 1 : 0
enabled: MainCtx.hasAcrylicSurface