Skip to content
Snippets Groups Projects
Commit ee78d290 authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by Steve Lhomme
Browse files

qml: make playlist tool bar buttons focusable

These were made explicitly unfocusable due to
the existence of the overlay menu. However,
the overlay menu is no more, so the buttons
should be able to gain focus.
parent cbc4d43a
No related branches found
No related tags found
1 merge request!6280qml: make playlist tool bar buttons focusable
Pipeline #533652 passed with stage
in 22 minutes and 32 seconds
......@@ -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
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment