Skip to content

Commit

Permalink
save and load playlist menu items hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
m1lhaus committed Sep 28, 2016
1 parent 84e77a7 commit d8be4a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions forms/main_form.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,10 @@ def setupUi(self, MainWindow):
# self.playlistAddAction = QAction(QIcon(u":/icons/media-next.png"), u"&Add files...", MainWindow)
self.playlistSaveAction = QAction(QIcon(":/icons/save.png"), tr['SAVE_PLAYLIST'], MainWindow)
self.playlistSaveAction.setEnabled(False)
self.playlistSaveAction.setVisible(False)
self.playlistLoadAction = QAction(QIcon(":/icons/open.png"), tr['LOAD_PLAYLIST'], MainWindow)
self.playlistLoadAction.setEnabled(False)
self.playlistLoadAction.setVisible(False)
self.playlistClearAction = QAction(QIcon(":/icons/delete.png"), tr['CLEAR_PLAYLIST'], MainWindow)
self.toolsSettingsAction = QAction(QIcon(":/icons/settings.png"), tr['SETTINGS'], MainWindow)
# self.toolsSettingsAction.setEnabled(False)
Expand Down

0 comments on commit d8be4a9

Please sign in to comment.