Skip to content

Commit

Permalink
Fixing bug with video playing when boxart is selected
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayingKarrde committed Jun 17, 2020
1 parent d7ac0f4 commit be6275c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Global/ItemHighlight.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ id: root

property var game
property bool selected
property bool playVideo: (settings.AllowThumbVideo === "Yes")// && selected
property bool boxArt
property bool playVideo: (settings.AllowThumbVideo === "Yes") && !boxArt

onGameChanged: {
videoPreviewLoader.sourceComponent = undefined;
Expand Down
1 change: 1 addition & 0 deletions GridView/GridViewMenu.qml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ id: root
height: gamegrid.cellHeight
game: list.currentGame(gamegrid.currentIndex)
selected: gamegrid.focus
boxArt: showBoxes
}
}

Expand Down

0 comments on commit be6275c

Please sign in to comment.