[vlc-commits] qml: fix PlayerButtonsLayout navigation item skipping
    Fatih Uzunoglu 
    git at videolan.org
       
    Mon Nov 23 15:37:07 CET 2020
    
    
  
vlc | branch: master | Fatih Uzunoglu <fuzun54 at outlook.com> | Fri Nov 20 21:32:32 2020 +0300| [9d09165545dae821e617922e7c3bc2dda8dcfa4a] | committer: Pierre Lamot
qml: fix PlayerButtonsLayout navigation item skipping
Signed-off-by: Pierre Lamot <pierre at videolabs.io>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9d09165545dae821e617922e7c3bc2dda8dcfa4a
---
 modules/gui/qt/player/qml/PlayerButtonsLayout.qml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt/player/qml/PlayerButtonsLayout.qml b/modules/gui/qt/player/qml/PlayerButtonsLayout.qml
index 1a49750fdd..6d5d3ea077 100644
--- a/modules/gui/qt/player/qml/PlayerButtonsLayout.qml
+++ b/modules/gui/qt/player/qml/PlayerButtonsLayout.qml
@@ -85,7 +85,7 @@ RowLayout{
                 }
 
                 if (index > 0)
-                    buttonloader.item.KeyNavigation.left = buttonrow.children[index-1].item
+                    buttonloader.item.KeyNavigation.left = buttonrow.children[index].item
             }
         }
     }
    
    
More information about the vlc-commits
mailing list