Commit 70c147f0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4: add a record menu action

Close #8761
parent 98ed7f65
......@@ -842,6 +842,10 @@ void VLCMenuBar::PopupMenuPlaylistEntries( QMenu *menu,
action->setData( ACTION_NO_CLEANUP + ACTION_DELETE_ON_REBUILD );
CONNECT( THEMIM, playlistNotEmpty(bool), action, setEnabled(bool) );
action = menu->addAction( qtr( "Record" ), THEAM, SLOT( record() ) );
action->setIcon( QIcon( ":/toolbar/record" ) );
if( !p_input )
action->setEnabled( false );
menu->addSeparator();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment