aboutsummaryrefslogtreecommitdiff
path: root/src/playlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/playlist.cpp')
-rw-r--r--src/playlist.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/playlist.cpp b/src/playlist.cpp
index d65debb85..63f11f50f 100644
--- a/src/playlist.cpp
+++ b/src/playlist.cpp
@@ -139,6 +139,13 @@ void PlayList::createActions()
m_addMenu->addAction ( addDirAct );
connect ( addDirAct, SIGNAL ( triggered() ), parent(), SLOT ( addDir () ) );
m_actions << addDirAct;
+
+ QAction *addUrlAct = new QAction ( tr ( "&Add Url" ),this );
+ addUrlAct->setShortcut ( tr ( "U" ) );
+ m_addMenu->addAction ( addUrlAct );
+ connect ( addUrlAct, SIGNAL ( triggered() ), parent(), SLOT ( addUrl () ) );
+ m_actions << addDirAct;
+
//remove menu
QAction *remSelAct = new QAction ( tr ( "&Remove Selected" ),this );
remSelAct->setShortcut ( tr ( "Del" ) );