(self)
| 2055 | self.playlist.addItem(streamURI) |
| 2056 | |
| 2057 | def removePlaylistNote(self): |
| 2058 | if not self.clearedPlaylistNote: |
| 2059 | for index in range(self.playlist.count()): |
| 2060 | self.playlist.takeItem(0) |
| 2061 | self.clearedPlaylistNote = True |
| 2062 | |
| 2063 | def addFolderToPlaylist(self, folderPath): |
| 2064 | self.showErrorMessage("You tried to add the folder '{}' to the playlist. Syncplay only currently supports adding files to the playlist.".format(folderPath)) # TODO: Implement "add folder to playlist" |
no outgoing calls
no test coverage detected