diff --git a/mythtv/programs/mythfrontend/playbackbox.cpp b/mythtv/programs/mythfrontend/playbackbox.cpp
index 734cce1..0cdf136 100644
|
a
|
b
|
void PlaybackBox::ShowActionPopup(const ProgramInfo &pginfo)
|
| 3113 | 3113 | if ((asFileNotFound == pginfo.GetAvailableStatus()) || |
| 3114 | 3114 | (asZeroByte == pginfo.GetAvailableStatus())) |
| 3115 | 3115 | { |
| 3116 | | m_popupMenu->AddItem(tr("Show Recording Details"), SLOT(showProgramDetails())); |
| 3117 | 3116 | m_popupMenu->AddItem(tr("Delete"), SLOT(askDelete())); |
| 3118 | 3117 | |
| 3119 | 3118 | if (m_playList.filter(pginfo.MakeUniqueKey()).size()) |
| … |
… |
void PlaybackBox::ShowActionPopup(const ProgramInfo &pginfo)
|
| 3124 | 3123 | { |
| 3125 | 3124 | m_popupMenu->AddItem(tr("Add to Playlist"), SLOT(togglePlayListItem())); |
| 3126 | 3125 | } |
| | 3126 | if (m_playList.size()) |
| | 3127 | { |
| | 3128 | m_popupMenu->AddItem(tr("Playlist options"), NULL, createPlaylistMenu()); |
| | 3129 | } |
| | 3130 | |
| | 3131 | m_popupMenu->AddItem(tr("Recording Options"), NULL, createRecordingMenu()); |
| 3127 | 3132 | |
| 3128 | 3133 | DisplayPopupMenu(); |
| 3129 | 3134 | |