From 8a4975b0416f5f1421fdf7bffc704e24faf6fdc9 Mon Sep 17 00:00:00 2001 From: Et0h Date: Thu, 2 Jun 2016 20:21:39 +0100 Subject: [PATCH] Use better error message when trying to add folder to playlist --- syncplay/ui/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/ui/gui.py b/syncplay/ui/gui.py index 4d776bd..6f017f8 100644 --- a/syncplay/ui/gui.py +++ b/syncplay/ui/gui.py @@ -1412,7 +1412,7 @@ class MainWindow(QtGui.QMainWindow): self.clearedPlaylistNote = True def addFolderToPlaylist(self, folderPath): - self.showErrorMessage("Add Folder {}".format(folderPath)) # TODO: Implement "add folder to playlist" + self.showErrorMessage(u"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" def deleteSelectedPlaylistItems(self): self.playlist.remove_selected_items()