(self)
| 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" |
| 2065 | |
| 2066 | def deleteSelectedPlaylistItems(self): |
| 2067 | self.playlist.remove_selected_items() |
| 2068 | |
| 2069 | def saveSettings(self): |
| 2070 | settings = QSettings("Syncplay", "MainWindow") |
no test coverage detected