initial bits to make a ytdl addition
This commit is contained in:
parent
405a310e02
commit
666c22ae66
12 changed files with 353 additions and 1 deletions
|
@ -68,6 +68,7 @@ Item {
|
|||
count: innerModel.count()
|
||||
newItemFunction: (function() {
|
||||
videoProxyModel.setFilterRegularExpression("");
|
||||
newVideo.open();
|
||||
})
|
||||
deleteItemFunction: (function(rows) {
|
||||
videoProxyModel.deleteVideos(rows)
|
||||
|
@ -75,6 +76,19 @@ Item {
|
|||
|
||||
}
|
||||
|
||||
Presenter.NewVideo {
|
||||
id: newVideo
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: videoDLTimer
|
||||
interval: 3000
|
||||
running: !newVideo.sheetOpen
|
||||
onTriggered: {
|
||||
newVideo.clear();
|
||||
}
|
||||
}
|
||||
|
||||
Presenter.LibraryItem {
|
||||
id: imageLibrary
|
||||
Layout.alignment: Qt.AlignTop
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue