Skip to content
Snippets Groups Projects

qml: make playlist tool bar buttons focusable

Merged Fatih Uzunoğlu requested to merge fuzun/vlc:qt/playlisttoolbarbuttonsfocusable into master
1 file
+ 0
5
Compare changes
  • Side-by-side
  • Inline
@@ -54,7 +54,6 @@ RowLayout {
: VLCIcons.repeat_all
checked: MainPlaylistController.repeatMode !== PlaylistController.PLAYBACK_REPEAT_NONE
onClicked: MainPlaylistController.toggleRepeatMode()
focusPolicy: Qt.NoFocus
}
}
@@ -76,7 +75,6 @@ RowLayout {
description: qsTr("Shuffle")
text: VLCIcons.shuffle
onClicked: MainPlaylistController.toggleRandom()
focusPolicy: Qt.NoFocus
}
}
@@ -100,8 +98,6 @@ RowLayout {
popupAbove: true
focusPolicy: Qt.NoFocus
model: MainPlaylistController.sortKeyTitleList
onSortSelected: key => {
@@ -147,7 +143,6 @@ RowLayout {
description: qsTr("Clear playqueue")
text: VLCIcons.playlist_clear
onClicked: MainPlaylistController.clear()
focusPolicy: Qt.NoFocus
}
}
}
Loading