[UI] Made tracks menu show currently playing track as default.
This commit is contained in:
parent
85b8726d98
commit
99c9d906e4
|
@ -103,7 +103,7 @@ ApplicationWindow {
|
||||||
value: trackID
|
value: trackID
|
||||||
})
|
})
|
||||||
if (player.getProperty("track-list/" + track + "/selected")) {
|
if (player.getProperty("track-list/" + track + "/selected")) {
|
||||||
subList.currentIndex = subList.count
|
subList.currentIndex = subList.count - 1
|
||||||
}
|
}
|
||||||
} else if (trackType == "audio") {
|
} else if (trackType == "audio") {
|
||||||
audioModel.append({
|
audioModel.append({
|
||||||
|
@ -112,7 +112,7 @@ ApplicationWindow {
|
||||||
value: trackID
|
value: trackID
|
||||||
})
|
})
|
||||||
if (player.getProperty("track-list/" + track + "/selected")) {
|
if (player.getProperty("track-list/" + track + "/selected")) {
|
||||||
audioList.currentIndex = audioList.count
|
audioList.currentIndex = audioList.count - 1
|
||||||
}
|
}
|
||||||
} else if (trackType == "video") {
|
} else if (trackType == "video") {
|
||||||
vidModel.append({
|
vidModel.append({
|
||||||
|
@ -120,7 +120,7 @@ ApplicationWindow {
|
||||||
value: trackID
|
value: trackID
|
||||||
})
|
})
|
||||||
if (player.getProperty("track-list/" + track + "/selected")) {
|
if (player.getProperty("track-list/" + track + "/selected")) {
|
||||||
vidList.currentIndex = vidList.count
|
vidList.currentIndex = vidList.count - 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue