[vlc-commits] [Git][videolan/vlc][master] qml: fix button color in navigation box
    Steve Lhomme (@robUx4) 
    gitlab at videolan.org
       
    Fri Aug 16 11:13:55 UTC 2024
    
    
  
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
3a6ab3fb by Pierre Lamot at 2024-08-16T10:33:05+00:00
qml: fix button color in navigation box
- - - - -
1 changed file:
- modules/gui/qt/player/qml/NavigationBox.qml
Changes:
=====================================
modules/gui/qt/player/qml/NavigationBox.qml
=====================================
@@ -64,7 +64,7 @@ Control {
 
         Widgets.ActionButtonOverlay {
             id: closeButton
-            color: theme.bg.secondary
+            color: theme.fg.secondary
             Layout.alignment: Qt.AlignRight | Qt.AlignTop
             Layout.column: 2
             Layout.row: 0
@@ -77,7 +77,7 @@ Control {
 
         Widgets.ActionButtonOverlay {
             id: upButton
-            color: theme.bg.secondary
+            color: theme.fg.secondary
             Layout.column: 1
             Layout.row: 0
             iconTxt: VLCIcons.ic_fluent_chevron_up_24
@@ -87,7 +87,7 @@ Control {
 
         Widgets.ActionButtonOverlay {
             id: leftButton
-            color: theme.bg.secondary
+            color: theme.fg.secondary
             Layout.column: 0
             Layout.row: 1
             iconTxt: VLCIcons.ic_fluent_chevron_left_24
@@ -97,7 +97,7 @@ Control {
 
         Widgets.ActionButtonOverlay {
             id: selectButton
-            color: theme.bg.secondary
+            color: theme.fg.secondary
             Layout.column: 1
             Layout.row: 1
             iconTxt: VLCIcons.ok
@@ -108,7 +108,7 @@ Control {
 
         Widgets.ActionButtonOverlay {
             id: rightButton
-            color: theme.bg.secondary          
+            color: theme.fg.secondary
             Layout.column: 2
             Layout.row: 1
             iconTxt: VLCIcons.ic_fluent_chevron_right_24
@@ -118,7 +118,7 @@ Control {
 
         Widgets.ActionButtonOverlay {
             id: downButton
-            color: theme.bg.secondary
+            color: theme.fg.secondary
             Layout.column: 1
             Layout.row: 2
             iconTxt: VLCIcons.ic_fluent_chevron_down_24
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3a6ab3fb9c3c992a887143ac158e7ca72b051910
-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/3a6ab3fb9c3c992a887143ac158e7ca72b051910
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